@import url('https://fonts.cdnfonts.com/css/adobe-garamond-pro-2');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevents horizontal scroll */
    display: flex;
    flex-direction: column;
    background:#ebebe3;
}
html
{
    width: 100%;
    overflow-x: hidden;
}
  
header {
    position: relative;
    width: 100%;
    height: 100vh; 
}
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
}

.background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.menu-toggle, .menu-close {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }

nav {
    top: 0%;
    position: relative; 
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px; 
    background: transparent; 
    z-index: 1; 
}

nav .nav1 img
{
   height: 50%;
   width: 50%;
   object-fit: cover;
}
nav .nav2 
{
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin: 50px;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;

}
nav .nav2 a
{
    text-decoration: none;
    color: rgb(228, 225, 225);
    font-family: 'Adobe Garamond Pro', serif;
    font-size:13px;
    font-weight: 20;
}
nav .nav2 i
{
    color: white;
    font-size: 25px;
}
nav .nav2  .social
{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

nav .nav2 .styled-button {
    color: black;
    background-color: #bc9a63;
    padding: 10px 20px; 
    border: solid black 0.5px;
    border-radius: 5px;
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 12px; 
    text-align: center; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    box-sizing: border-box; 
    width: auto;
    max-width: 100%; 
    text-decoration: none; /* Removes underline from the anchor */
    display: inline-block; /* Makes it behave like a button */
}
nav .nav2 .styled-button:hover {
    background-color: #a88554; /* Optional hover effect */
}
.section2
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
    margin: 20px;
}
.section2 .heading
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}
.section2 .heading img
{
    width: 100%;
    height: 100%;
}
.section2 .photos .part1{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.section2 .photos .part1  :nth-child(1)
{
   margin-top: 200px;
}

.section2 .photos .part2{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
   
}
.section2 .photos .part2  :nth-child(2)
{
   margin-top: 200px;
}
.section2 .photos
{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: auto;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
    gap: 500px;
    position: relative;
}
.section2 .photos img
{
    width: 50%;
    height: 50%;
}
.section2 .content
{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    
}
.section2 .content p
{
    margin: 0px 150px 0px 150px;
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 13px;
    font-weight: 400;
    font-style: normal;

}
.section3
{
    margin: 200px 3px 100px 3px;
}
.section3 .photos {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 4 columns */
    grid-template-rows: repeat(3, 1fr); /* 3 rows */
    gap: 3px; /* Space between images */
    justify-content: center;
    align-items: center;
   
}

.section3 .photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
.section4 
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    margin: 50px;
    gap: 50px;
}
/* Modal styling */
/* Modal styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    display: flex; /* Use Flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    justify-items: center;
    align-content: center;
    background-color: rgba(0, 0, 0, 0.9); /* Black background with opacity */
  }
  
  /* Close button */
  .modal .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }
  
  /* Modal content (image) */
  .modal-content {
    display: block; /* Ensures the image behaves like a block element */
    max-width: 90%; /* Ensure it doesn't overflow on smaller screens */
    max-height: 90%; /* Ensure it doesn't overflow vertically */
    margin: auto; /* Centers the image */
    transition: transform 0.25s ease; /* Smooth zooming effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add a slight shadow for better visibility */
    object-fit: cover;
  }
  
 
  
  /* Zoom on hover */
  .modal-content:hover {
    transform: scale(1.1); /* Slight zoom effect */
  }
  .section4
  {
    margin-bottom: 100px;
  }
.section4 .blogs
{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: auto;
    gap: 5px;
    margin: 40px;
}
.section4 .col
{
    
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.section4 .col img{
    width: 100%;
    height: 100%;
    
    object-fit: cover;
}
.section4 .col h4
{
    margin-top: 10px;
    font-weight: 606;
    color:black;
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    
}
.section4 .col p{
    color:rgb(62, 61, 61);
    font-family: 'Adobe Garamond Pro', serif;
    font-size:13px;
    font-weight: 400;
    font-style: normal;

}
.section4 .button .styled-button {
    border: solid white 1px;
    border-radius: 5px;
    padding: 15px; 
    font-size: 11px; 
    background-color: #bc9a63;
    color: white;
    width: fit-content; 
    font-family: 'Adobe Garamond Pro', serif;
    text-decoration: none; /* Removes underline from the anchor */
    display: inline-block; /* Ensures it behaves like a button */
    text-align: center; /* Centers the text */
}
.section4 .button .styled-button:hover {
    background-color: #a88554; /* Optional hover effect for better UX */
}
.section5{
    margin-top: 300px;
    margin-bottom: 300px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    align-content: center;
    justify-items: center; 
}
.section5 .content
{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}
.section5 .content img{
   width: 50%;
   height: 50%;
   object-fit: cover;
}
.section5 .content p{
    color: white;
    max-width: 650px;
    text-align: center;
    font-family: 'Adobe Garamond Pro', serif;
    font-size:13px;
    font-weight: 400;
    font-style: normal;
   
    
}
.section5 iframe {
   
    width: 100vw;
    height: 100%;
    position: absolute;
    opacity: 0.8; /* Adjust for desired transparency */
    object-fit: cover;
     
}
.section7
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
    gap: 20px;
    margin: 100px 0px 100px 0px;
}
.section7 .section7-link {
    border: solid white 1px;
    border-radius: 5px;
    padding: 15px; 
    font-size: 11px; 
    background-color: #bc9a63;
    color: white;
    width: fit-content; 
    font-family: 'Adobe Garamond Pro', serif;
    text-decoration: none; /* Removes underline from the link */
    display: inline-block; /* Ensures it behaves like a button */
    text-align: center; /* Centers the text */
}
.section7 .section7-link:hover {
    background-color: #a88554; /* Optional hover effect */
}
.section7 p
{
    max-width: 90%;
    text-align: center;
    line-height: 1.8;
    font-family: 'Adobe Garamond Pro', serif;
    font-size:13px;
    font-weight: 400;
    font-style: normal;
    color: black;
}
.section7 .videos
{
    display: flex;
    flex-direction: column;
    margin: 40px 0px 40px 0px;

}
.section7 .videos .part1
{
    display: grid;
   grid-template-columns: repeat(2,1fr);
   grid-template-rows: auto;
    margin-bottom: 50px;
    gap: 8px;
}
.section7 .videos .part2

{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: auto;
    gap: 8px;
}
.section7 .videos iframe
{
   
    width: 100%;
    height: 100%;
    opacity: 0.8;
    object-fit: cover;
   

}
.section7  .magazine
{
    display: grid;
    grid-template-columns: repeat(7,1fr);
    grid-template-rows: auto;
   gap: 30px;
   margin: 20px 50px 20px 50px;
}
.section7  .magazine img
{
    width: 90%;
    height: 100%;
    object-fit: cover;
}
.section7 .videos2 
{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: auto;
    margin: 20px;
    gap: 8px;
    
}
.section7 .videos2 iframe
{
    width: 100%;
    opacity: 0.8;
    object-fit: cover; 
}
.section8
{
    display: flex;
    flex-direction: column;
}
.section8 .background2 img{
    position: relative;
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.section8 .content 
{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin: 70px;
    z-index: 1;
}
.section8 .content img{
   height: 100%;
   width: 500px;
   
}
.section8 .content p
{
    font-family: 'Adobe Garamond Pro', serif;
    font-size:12px;
    font-weight: 450;
    font-style: normal;
    max-width: 500px;
    line-height: 2.5;
}
.section8 .content .section8-button {
    border: solid transparent 1px;
    border-radius: 5px;
    padding: 35px;
    font-size: 11px;
    background-color: #bc9a63;
    color: white;
    width: fit-content;
    font-family: 'Adobe Garamond Pro', serif;
    margin-top: 60px;
    text-decoration: none; /* Removes underline */
    display: inline-block; /* Makes it behave like a button */
    text-align: center; /* Centers the text */
}
.section8 .content .section8-button:hover {
    background-color: #a88554; /* Optional hover effect for interactivity */
}
footer
{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
footer .logo{
    display: flex;
    flex-direction: column;
    margin: 50px;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    gap: 20px;
}
footer .logo .social
{
    display: flex;
    flex-direction: row;
    gap: 20px;
}
footer .logo .social a{
color: inherit; /* Ensures the icon retains its original color */
text-decoration: none; /* Removes underline effect */
margin: 0 5px; /* Adds spacing between icons */
display: inline-block; /* Makes the anchor behave like the icon */

}

footer .logo img{
    width: 300px;
    height: 100px;
    object-fit: cover;
}
footer .contact
{
    display: flex;
    flex-direction: row;
    gap: 250px;
    margin: 30px 170px 0px 0px;
}
footer .contact a{
   
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    color: black;
}
footer .contact .location
{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

footer .contact .details
{
    display: flex;
    flex-direction: column;
    gap: 20px;

}
.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}


@media screen and (max-width: 992px)
{
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    html
    {
        width: 100%;
        overflow-x: hidden;
    }
    body
    {
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    .section2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0; 
      }
    
      .section2 .heading {
        width: 100%;
        margin-bottom: 10px;
      }
    
      .section2 .heading img {
        width: 100%;
        height: auto; 
      }
    
      .section2 .photos {
        display: flex;
        flex-wrap: wrap; 
        gap: 10px; 
        justify-content: center; 
        align-items: center;
        margin-top: 20px;
      }
      .section2 .photos .part1 :nth-child(1) {
        margin-top: 0 !important; 
      }
      .section2 .photos .part2 :nth-child(2) {
        margin-top: 0 !important; 
      }
      .section2 .photos img {
        width: 45%; 
        height: auto; 
      }
    
      .section2 .content {
        width: 80%; 
        margin: 20px 0;
        text-align: center; 
        position: static;
      }
    
      .section2 .content p {
        margin: 0 auto; 
        font-size: 13px; 
      }
    
    .section3 .photos
    {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        grid-template-rows: repeat(4,1fr);
    }
    .section3 .photos img
    {
        width: 100%;
        height:100%;
    }
    .section4
    {
        margin: 10px;
    }
    .section4 .blogs
    {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-template-rows: auto;
        margin: 10px;
    }
    .section4 .blogs img
    {
        width: 100%;
        height:100%;
    }
    .section5
    {
        margin: 200px 0px 200px 0px;
    }
  
   
    .section7 .videos .part1 iframe
    {
        height: 100%;
        width: 100%;

    } 
    .section7 .videos .part2 iframe
    {
        height: 100%;
        width: 100%;

    } 
  
    .section7 .magazine img 
    {
        width: 100%;
        height: 100%;
    }
    .section7 .videos2 iframe
    {
        height: 100%;
        width: 100%;

    } 
    .section8
    {
        width: 100%;
    }
   
    .section8 .content button
    {
        padding: 20px;
        margin-top: 20px;
    }
    

}
@media screen and (max-width: 912px)
{
    nav .nav1 img 
    {
        width: 100%;
    }
    
    .section2 .heading
    {
        margin: 0;
        width: 100%;
    }
    .section2 .heading img{
       width: 90%;
       height: 100px;
    }
    

    .brands {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 20px 0 0 0; 
    }
    footer
    {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        align-items: center;
        justify-items: center;
    }
    footer .logo{
        display: flex;
        flex-direction: column;
        margin: 0%;
    }
    footer .contact{
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    

}
/* Mobile Styles */
@media screen and (max-width: 768px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    html
    {
        width: 100%;
        overflow-x: hidden;
    }
    body
    {
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    
    .section2 .heading
    {
        margin: 0;
        width: 100%;
    }
    .section2 .heading img{
       width: 100%;
       height: 100px;
    }
   .section2 .content 
   {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    
   }
   .section2 .content p
   {
    width: 100%;
    margin: 10px;
   }
    header {
        position: relative;
        width: 100%;
        height: 100vh; /* Full viewport height */
    }
    nav {
        display: flex;
        flex-direction: column;
        position: static; /* Make navbar stick to the top */
        top: 0;          /* Ensure no gap at the top */
        left: 0;
        width: 100%;
        width: 100%;
        background: whitesmoke;
        text-align: center;
        padding: 10px 0;
    }
    nav .nav1
    {
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
        margin: 10px;
        gap: 10px;
        
    }
    nav .nav1 img 
    {
        width: 80%; 
        
    }
    
    
    nav .nav2 {
        display: none; /* Hide menu links by default */
        flex-direction: column;
        gap: 10px;
    }
    nav .nav2 a
    {
        font-size: 20px;
    }
    nav .nav2 button
    {
        padding: 10px 30px 10px 30px;
    }
    
    nav .nav2.active {
        display: flex; /* Show menu links when active */
    }
    
    .menu-toggle {
        display: block; /* Show the menu button */
      }
    
      .menu-close {
        display: none; /* Cross button hidden initially */
      }
    
      .nav2 {
        display: none; /* Hide navigation links by default */
        flex-direction: column; /* Stack links vertically */
        gap: 10px;
        text-align: center;
        width: 100%;
      }
    
      .nav2.active {
        display: flex; /* Show menu when active */
      }
    
      .menu-toggle.active {
        display: none; /* Hide menu button when active */
      }
    
      .menu-close.active {
        display: block; /* Show cross button when active */
      }
    nav .nav2.active ~ .logo {
        background-color: gray; 
    }
    
    nav .nav2 a {
        color: rgb(35, 33, 33);
    }
    
    nav .nav2 .social {
        display: flex;
        flex-direction: row;
        gap: 30px;
    }
    
    nav .nav2 i {
        color: rgb(35, 33, 33);
    }
    
    nav .nav2 .styled-button {
        background-color: black; /* Black background for small screens */
        color: white; /* White text for small screens */
        border-color: white; /* Optional: white border for better contrast */
    }

    nav .nav2 .styled-button:hover {
        background-color: #555555; /* Slightly lighter shade for hover effect */
    }
    nav .nav2  .social
    {
        display: flex;
        flex-direction: row;
        margin: 5px;
        gap: 10px;
    }
    
   

    .brands {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 20px 0 0 0; 
    }

    .brands img {
        width: 70%; 
        height: auto;
    }
    .section3 .photos
    {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(5,1fr) ;
    }
    .section3 .photos img
    {
        width: 100%;
        height: 100%;
        object-fit: cover;  
    }
    .modal-content {
        width: 90%;
      }
      .section4 .blogs .col 
    {
        margin-bottom: 30px;
    }
    .section4
    {
        margin-bottom: 100px;
    }
    .section5 {
        max-width: 100%;
        flex-direction: column; /* Stack content and video vertically */
        text-align: center;
        margin: 80px 0px 80px 0px;
    }
   
    .section5 .content {
        max-width: 90%;
    }

    .section5 .content h1 {
        font-size: 40px;
    }

    .section5 p {
        font-size: 0.9rem;
    }

    .section5 iframe {
        width: 100%;
      
    } 
  
  
    .section7 
    {
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }
    .section7 p
    {
        width: 100%;
        max-width: 99%;
        text-align: center;
    }
    .section7 .videos
    {
        width: 100%;
       
    }
    
    .section7 .videos .part1
    {
        display: flex;
        flex-direction: column;
        
    }
    
    .section7 .videos .part2
    {
        display: flex;
        flex-direction: column;
        
    }
    .section7 .videos   iframe
    {
        width: 100%;
        object-fit: cover;
    }
    .section7 .magazine
    {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        grid-template-rows:auto;
        gap: 20px;
        margin: 10px;
    
    }
    .section7 .magazine img 
    {

        width: 100%;
        height: 100%;
    }
    .section7 .videos2
    {
        display: flex;
        flex-direction: column;
    }
    .section7 .videos2 iframe
    {
        width: 100%;
        object-fit: cover;
    }
    .section8
    {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
  
    .section8 .content img
    {
        width: 95%;
        height: 100%;
    }
    .section8 .content 
    {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 30px;
    }
    
    .section8 .content p
    {
        font-size: 8px;
        width: 95%;
    }
    .section8 .background img
    {
      object-fit: cover;
    }
    footer
    {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        align-items: center;
        justify-items: center;
        margin: 10px;
    }
    footer .logo{
        display: flex;
        flex-direction: column;
        margin: 0%;
    }
    footer .contact{
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}
@media screen and (max-width: 375px)
{
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    html
    {
        width: 100%;
        overflow-x: hidden;
    }
    body
    {
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
    }
   
    .section3
    {
        margin-top: 20px;
    }
    .section3 .photos
    {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-template-rows: repeat(8,1fr);
    }
    
    .section4 .blogs
    {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        grid-template-rows: auto;
    }
    .section4 .blogs .col 
    {
        margin-bottom: 10px;
    }
    .section5
    {
        margin-top: 10px;
    }
    .section5 .content p
    {
       font-size: 8px;
    }
   
    .section7 .magazine
    {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        grid-template-rows: repeat(2,1fr);
        gap: 5px;
        width: 100%;
        margin: 0%;
    }
    .section7 .magazine img 
    {
        width: 80%;
        height: 100%;
       
    }
    .section8 .content{
        width: 100%;
    }
    
    .section8 .content img    {
        width: 80%;
    }
    

    footer
    {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        align-items: center;
        justify-items: center;
    }
    footer .logo{
        display: flex;
        flex-direction: column;
    }
    footer .contact{
        display: flex;
        flex-direction: column;
    }
}
