:root {
    --gold-yellow: #cc9933;
    --dark-yellow: #352b21;
    --soft-white: #e8ede9;
    --soft-cream: #d2c6ae;
    --normal-grey: #d2c5b4;
    --dark-grey: #666666;
    --dark-cream: #796959;
}

html {
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
  }

/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

body, html {
    overflow-x: hidden;
}

/* Navbar styles */
nav{
    background: #2A2C29;
    height: 60px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    z-index: 4;
    position: fixed;   
    
}

.web-logo {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 30px;
    height: 50px;
}

nav ul{
    float: right;
    margin: 12px 20px;
}

nav ul li{
    display: inline-block;
    margin: 5px 1px;
}
  
nav ul li a{
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
    list-style: none;
    text-decoration: none;
}
  
ul li a:hover{
    background: var(--soft-white);
    transition: .5s;
    color: var(--dark-cream);
}
  
.checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check{
    display: none;
}
/* Landing section styles */
.Section_top{
    width: 100%;
    height: 700px;
    background-image: url(/Assets/img/bg-page1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: change 10s infinite ease-in-out;
}
.content{
    position: relative;
    top: 20%;
    left: 10%;
    margin: auto;
    text-transform: uppercase;
    line-height: 60px;
}
.content h1{
    color: var(--gold-yellow);
    font-size: 60px;
    letter-spacing: 8px;
}

.content p {
    color: var(--gold-yellow);
    font-size: 20px;
    margin-top: -13px;
    letter-spacing: 1px;
}

.content a{
    background: var(--gold-yellow);
    padding: 10px 24px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    color: var(--dark-yellow);
}
.content a:hover{
    background: var(--dark-cream);
    color: var(--soft-cream);
    transition: .2s;
}
@keyframes change{
    0%
    {
        background-image: url(/Assets/img/bg-page1.png);
    }
    33%
    {
        background-image: url(/Assets/img/bg-page2.png);
    }
    66%
    {
        background-image: url(/Assets/img/bg-page3.png);
    }
    100%
    {
        background-image: url(/Assets/img/bg-page1.png)

    }
}

/* Static background section styles */
.static-background {
    background-image: url('/Assets/img/bg-marmer3.png'); /* <a href="https://www.freepik.com/free-photo/close-up-white-marble-texture-background_3472378.htm#query=marble%20texture&position=4&from_view=keyword&track=ais">Image by rawpixel.com</a> on Freepik */
    background-size: cover;
    background-position: center;
    display: flex;
    padding: 100px 20px;
}

.static-image img{
    position: relative;
    margin: auto;
    justify-content: center;
    width: auto;
    height: 400px;
    padding: 0;
    border-radius: 3px;
}

.static-content {
    display: flex;
}

.static-image .section-title {
    font-size: 36px;
    margin-bottom: 20px;
    top: 0;
    color: var(--gold-yellow);
}

.static-image {
    float: left;
    padding: 20px 40px;
}

.static-image .section-description {
    font-size: 18px;
    max-width: 500px;
    color: var(--gold-yellow);
}

.learn-more-btn {
    display: inline-block;
    background-color: var(--gold-yellow);
    color: var(--dark-yellow);
    margin: 20px 0;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.learn-more-btn:hover {
    background-color: var(--soft-white);
    color: var(--dark-cream);
}

/* Product list section styles */
.product-list {
    position: relative;
    background-image: url(/Assets/img/bg-product.png);
    background-size: auto;
    background-position: right;
    margin: auto;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

.product-item h1 {
    display: none;
}

.product-container .section-title {
    margin-left: 23%;
    margin-bottom: 20px;
    font-size: 50px;
    color: var(--soft-white);
}

.product-container {
    padding: 100px 0;
    margin-left: 100px;
    z-index: 2;
}

.image-add-on {
    position: absolute;
    top: 0;
    right: 0;
    max-height: auto;
    height: 793px;
    width: 400px;
    z-index: 0;
    size: cover;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 80%;
    text-align: center;
}

.product-item {
    display: grid;
    grid-template-areas: 'image image '
    'title title '
    'sub sub ';
    gap: 3px;
    margin: 0;
    padding: 0;
    max-width: 400px;
}

.product-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    top: 0;
}

.product-title, .product-description{
    position: relative;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: auto;
    top: 0;
}

.product-title h3, .product-description p{
    justify-items: left;
}

.product-image {
    grid-area: image;
    width: auto;
    height: 0;
    position: relative;
    margin: auto;
}

.product-item:hover .product-image {
    height: 100px;
    transition: 0.5s;
}

.product-item:not(:hover) .product-image{
    height: 0px;
    transition: 0.6s;
}

.product-item h3, p {
    text-align: left;
}

.product-title {
    grid-area: title;
    font-size: 24px;
    font-weight: 24px;
    margin-bottom: 10px;
}

.product-description {
    grid-area: sub;
    font-size: 14px;
}

/* Image gallery section styles */
.image-gallery {
    background: url(/Assets/img/bg-offer2.png);
    background-size: cover;
    text-align: center;
    padding: 100px 0;
}

.image-gallery .section-title {
    color: var(--soft-white);
    font-size: 50px;
}

.image-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.image {
    position: relative;
}

.image img {
    max-width: auto;
    height: 370px;
    border-radius: 5px;
    transition: transform 0.3s;
}

.image-caption {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--soft-white);
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
    width: 350px;
    line-height: 40px;
}

.image:hover img {
    transform: scale(1.1);
}

.image:hover .image-caption {
    opacity: 1;
    bottom: 10px;
}

/* Quote section styles */
.quote-section {
    background: url(/Assets/img/bg-quotes.png);
    background-size: cover;
    background-position: 20px -140px;
    color: var(--soft-white);
    text-align: center;
    padding: 100px 0;
    margin: auto;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

blockquote {
    font-size: 60px;
    font-weight: 30px;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 30px;
    position: relative;
    justify-content: center;
    margin: auto;
    text-align: center;
    line-height: 30px;
}

.quote-author span {
    font-size: 24px;
}

/* Contact section styles */
.contact-section {
    background: url(/Assets/img/bg-contact2.png);
    background-size: cover;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-title {
    margin-bottom: 30px;
    font-size: 50px;
}

.contact-title h2{
    color: var(--soft-white);
}

.contact-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-image img {
    width: 500px;
    height: auto;
    border-radius: 5px;
}

.contact-form {
    flex: 1;
    padding: 0 50px;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}



.contact-form button {
    background-color: gold;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #fff;
}


/* Footer styles */
.footer2 {
    background-color: #333;
    height: 10px;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer2 p {
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.footer-column {
    flex: 1;
    padding: 0 20px;
    margin-left: 30px;
}

.footer-logo {
    width: auto;
    height: 118px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-column p {
    font-size: 14px;
    margin-bottom: 8px;
}

.social-media {
    margin-top: 10px;
}

.social-icon {
    display: inline-block;
    margin-right: 10px;
}

.social-icon img {
    width: auto;
    height: 20px;
}


@media (max-width: 1320px) {
    .product-list{
        justify-content: center;
        align-items: center;
        margin: 0;
        background: var(--soft-cream);
    }

    .image-add-on {
        display: none;
    }
}

@media (max-width: 952px){
    label.logo{
      font-size: 30px;
      padding-left: 50px;
    }
    nav ul li a{
      font-size: 16px;
    }

    .static-image img {
        height: 300px;
    }

    .static-content {
        margin: auto;
    }


    .image-container .image {
        margin-bottom: 20px;
    }

    .image img {
        height: 230px;
    }

    .image-caption {
        width: 200px;
        font-size: 25px;
    }

  }

/* Responsive styles */
@media screen and (max-width: 768px) {
    /* Navbar */

    nav {
        justify-content: space-around;
    }
    .checkbtn{
        display: block;
        top: 0;
        left: auto;
      }
      .web-logo {
        height: 35px;
      }

    nav {
        position: fixed;
        max-width: 768px;
    }
      ul{
        position: fixed;
        width: 110%;
        height: 100vh;
        background: #2c3e50;
        top: 48px;
        left: -120%;
        margin: auto;
        text-align: center;
        transition: all ease-in-out .5s;
      }
      nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
      }
      nav ul li a{
        font-size: 20px;
      }
      a:hover{
        background: none;
        color: #0082e6;
      }
      #check:checked ~ ul{
        left: 0;
      } 
      #check:checked ~ ul{
        left: -5%;
      }


    /* Landing section */
    .landing {
        padding: 50px 0;
    }
    
    .landing-content {
        right: 0;
    }

    .landing-title {
        font-size: 24px;
    }

    .landing-description {
        font-size: 16px;
    }

    /* Static background section */
    .static-background {
        padding: 50px 20px;
    }

    .static-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        left: 50%;
        transform: translateX(0) ;
    }

    .static-image img {
        margin-left: auto;
        margin-right: auto;
    }

    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 16px;
        text-align: center;
    }

    .static-image img {
        height: 200px;
        
    }

    .static-image {
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: auto;
        position: relative;
    }

    
    /* Product list section */
    .product-list {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    .product-container .section-title {
        display: inline-block;
        margin-left: -13px;
        padding: 0;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .image-add-on {
        display: none;
    }

    /* Image gallery section */
    .image-container {
        flex-direction: column;
    }

    .image {
        margin-bottom: 20px;
    }

    .image img {
        height: 250px;
    }

    .image-caption {
        width: 200px;
        font-size: 25px;
    }

    .quote-section blockquote {
        font-size: 40px;
    }

    .section-title {
        text-align: center;
    }

    .product-container .section-title h2 {
        text-align: center;
        left: -15px;
        justify-content: center;
        align-items: center;
        left: 0;
    }

    .product-container {
        padding: 40px 0;
    }

    /* Contact section */
    .contact-section {
        padding: 50px 0;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-form {
        width: 65%;
        padding-left: 28px;
        padding-right: 50px;
    }

    .contact-image img {
        margin-top: 20px;
        width: 340px;
        padding-bottom: 20px;
    }

    .footer {
        display: none;
    }

    .footer2 {
        margin: auto;
        padding: 20px 5px;
    }
}

@media screen and (max-width: 480px) {
    /* Navbar */

    .web-logo {
        height: 25px;
    }

    .product-container {
        padding: 20px 0;
    }