
/*======LOGO AND NAV BAR======*/
body {
    margin: 0px;
    padding: 0px;
}

h1 {
    font-size: 1.5rem;
}
#logo {
    width:auto; 
    height:50px;
    margin: 0px auto;
    display: block;
    margin-bottom: 30px;
    margin-top: 20px;
}

/* Hamburger Menu Button */
button#menu-button {
    height: 2rem;
    width: 2rem;
    display: block;
    border: none;
    background-image: url(../img/hamburger.svg); 
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    z-index: 10;
}

#menu-button.open { /* New code: Adds a class to the button when the menu is open */
    background-color: transparent;
    border: none; /* Optional: style for the open state */
}


/* Dropdown Menu */
#menu {
    display: none;
    position: absolute;
    z-index: 100;
    margin-top: -40px;
    right: 0.6rem;
    background-color: rgb(255, 255, 237);
    padding: 1rem;
    width: 85%;
    height: 50rem;
    border: 1px solid #444;
}


#menu.show-nav {
    display: block;
}



/* Navigation List Items */
#menu li.icon {
    width: 100%;
    margin: 1.3rem 0; /* Spaced for tapping */
    font-size: 0.875rem;
}

#menu li.icon a {
    display: flex;
    align-items: center; /* Vertically aligns icon and text */
    justify-content: start;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: bold;
    text-decoration: none;
    height: auto;
    gap: 0.5rem; /* Spacing between icon and text */
    color: #164e28;
}


/* Icon Styles */
#menu li.icon img {
    width: 24px;
    height: 24px;
    fill: #134721; /* Set a color for the SVG */
  }


#menu {
    display: none;
    background-color: transparent;
    transition: transform 0.3 ease;
}
svg
{
width: 50px;
height: 100%;
}

#menu.show-nav {
    display: block;
    background-color: rgb(255, 255, 255); 
    transition: transform 0.3 ease;
}

.home .container a {
    text-decoration: none;
}


@media only screen and (min-width: 64em) {
    button#menu-button {
        display: none;
    }

    #menu {
        display: flex;
    }
}

/* Hide Text for Accessibility */
.hide-text {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    padding: 0;
}


/*=============HOME PAGE=============*/

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; /* Optional: centers text within each element */
    padding: 10px;
}

#description {
    margin-left: auto;
    margin-right: auto;
}


.container {
    display: flex;
    gap: 10px; /* space between the divs */
    margin: 10px;
    flex-wrap: wrap;
  }
  
  .box {
    flex: 1; /* Each div will have equal width */
    padding: 10px;
    background-color: rgb(255, 188, 208);
    min-height: 200px;
    transition: transform 0.3s ease;
  }
  .box:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
  }

.page-world .box {
    flex: initial;
    background-color: #fff;
    border-bottom: 1px solid #bbb;
    padding-bottom: 20px;
}
.page-world .box img {
    padding-bottom: 10px;
    padding-top: 10px;
}

.container2 {
    display: flex;
    gap: 10px; /* space between the divs */
    margin-top: 10px;
    margin: 10px;
    flex-wrap: wrap;
  }
  
  .headings {
    text-decoration: none;
    font-family: "dejanire-headline", serif;
    font-weight: 700;
    font-style: normal;
    color: black
  }

  .container p, .container li {
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: small;
    text-align:left;
    color: black;
    line-height: 1.8;
  }
  .container li {
    list-style-type: disc;
    margin-left: 20px;
  }

  .center-content h1 {
        font-family: "ohno-softie-variable",sans-serif;
        font-variation-settings: 'wght' 500;
  }


  /*========PRODUCTS PAGE===========*/
.product-box {
    background-color: #fff;
    border: black solid 1px;
}

.headings, .text {
    margin: 0; /* Remove default margins for text elements */
}

/* Add this media query for larger screens */
@media (min-width: 768px) {
    .countries {
        flex-direction: row; /* Display in rows on larger screens */
        flex-wrap: wrap; /* Allow wrapping */
        justify-content: space-between; /* Space out items */
    }

    .country {
        flex-direction: row; /* Keep text and image horizontal on larger screens */
        width: 385px; /* Fixed width */
    }
}

/*india page*/

/*----------*/

/*bulgaria page*/




/*==========NATURAL VS SYNTHETIC SKINCARE INGREDIENTS PAGE===========*/
#natural-box {
    width: 100%;
    background-color: #e6e6e677;
    padding: 10px;
}

#synthetic-box {
    width: 100%;
    background-color: #cacaca94;
    padding: 10px;
}


#synthetic-title {
    margin-left: auto;
    margin-right: auto;
}

.page-contact input, 
.page-contact textarea {
    display: block;
    margin-bottom: 15px;
    width: 100%;
}
.page-contact input#reset,
.page-contact input#submit {
    display: inline;
    width: auto;
}

.page-contact input#submit {
    background-color: #0c470c;
    color:#fff;
}

.page-contact input#reset {
    background-color: rgb(255, 188, 208);
}


/*============ETHICAL SKINCARE PAGE============*/



/*=======ABOUT US PAGE========*/

.center-content .about {
    font-family: "ohno-softie-variable", sans-serif;
    font-variation-settings: "weight" 300; /* Instead of font-variation-settings */
}

.wrapper div {
    background-color: rgb(255, 188, 208);
}

/*FOOTER*/
footer {
    background-color: #074407;
    color: #ffffff;
    padding: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-cntainer a {
    text-decoration: none;
}

.footer-column {
    padding-left: 0px;
    font-weight: 600;
    flex: 1;
    margin: 0 20px;
}


footer h3 
{

    margin-bottom: 10px;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 600;
}


footer h3 a
{
    text-decoration: none;
}

footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

footer a {
    color: white;
    text-decoration: none;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-size: small;
    font-weight: lighter;
}
footer a :visited {
    text-decoration: underline;
}