*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*Colors */
:root{
    --header-color: #dabb9c;
    --header-link: #080400;
    --services-background: #dabb9c;
    --services-text: #cac3b9;
    --footer-color:#472c1b;
}

body{
    font-family: 'Poppins', sans-serif;
        
}

/*Header Section*/
.header{
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    gap: 60vh;
    align-items: center;
    background-color: var(--header-color);
    padding: 10px 20px;
    width: 100%;
}

.logo h3{
    margin-left: 120px;
    color: var(--header-link);
}


/* Navigation Links */
.navs{
    display:flex;
    cursor: pointer;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    
}


.navs a{
    text-decoration: none;
    color: var(--header-link);
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.navs a:hover{
    border-bottom: 2px solid var(--header-link);
}

.nav-toggle {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    line-height: 1;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--header-link);
}

/* Hero Section */
#home{
    height: 90vh;
    background-image: url('../images/hero background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#home h2{
    font-size: 48px;
    margin-top: 0;
    margin-left: 100px;
    color: #fff;
    text-align: left;
    width: 80vh;
    overflow: break-word;
    padding: 20px 10px;
    margin-bottom: 15px;
}

#home p{
    font-size: 20px;
    margin-top: 10px;
    margin-left: 100px;
    color: var(--header-link);
    font-weight: 200;
    text-align: left;
    width: 90vh;
    overflow: break-word;
    padding: 20px 10px;
}

.buttons{
    margin-left: 100px;
    padding: 120px 20px;
    display: flex;
    gap: 60px;
    cursor: pointer;
}

.buttons a:hover{
    transform: translateY(3px);
}

.shop a{
    text-decoration: none;
    color: #fff;
    background-color: var(--header-color);
    padding: 10px 20px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 8px;
}

.contact a{
    text-decoration: none;
    color: #fff;
    background-color: var(--footer-color);
    padding: 10px 20px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 8px;
}




/* Services Section */
#services{
    color: var(--services-text);
    padding: 20px 10px;
    text-align: center;
    margin-left: 60px;
}

#services h3{
    border-bottom: 20px;
    color: var(--header-link);
    margin-bottom: 30px;
    font-size: 28px;
}

#card{
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 40px 10px;
    flex-wrap: wrap;
}

.card1{
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    margin: 0 auto;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card1 img{
    width: 100%;
    max-width: 120px;
    height: 100px;
    border-radius: 6px;
}

.card1 h3{
    font-size: 18px;
    font-weight: 400;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin: 12px 0;
}

.card1 p{
    word-wrap: break-word;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
}

.card1:hover{
    margin-top: 10px;
    padding: 15px 10px;
    transform: translateY(-5px);
    box-shadow: 0 4px 8px var(--footer-color);
    background-color: var(--header-color);
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* About Section */
#about{
   font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
   font-weight: 500;
}


.about{
    display: flex;
}


.desc{
    width: 50%;
    padding: 20px;
    overflow-wrap: break-word;
    background-image: url(../images/description.jpg);
    background-size: cover;
    background-position: center;
    height: 60vh;
}

.desc h3{
    margin-left: 100px;
    color: var(--header-color);
    padding: 20px 10px;
    font-weight: bold;
    font-size: 30px;
}

.desc p{
    margin-left: 100px;
    color: var(--header-link);
    padding: 20px 10px;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
}


.desc button{
    margin-left: 100px;
    padding: 10px 20px;
    background-color: var(--header-color);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
}

.desc a{
    text-decoration: none;
    color: #fff;
}

.desc button:hover{
    background-color: var(--services-background);
    color: #fff;
}


.offers{
    width: 50%;
    padding: 20px;
    background-color: var(--services-background);
    color: #fff;
}


/* about offers */
.offers h4{
    margin-left: 20px;
    text-align: center;
    font-size: 30px;
    color: var(--header-link);
    font-weight: bolder;
    padding: 20px 10px;
}

.offers h3{
    margin-left: 35vh;
    font-size: 30px;
    margin-top: 10px;
    margin-right: 35vh;
    color: var(--header-link);
    font-weight: bolder;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Horizontally centers text */
    align-items: center;     /* Vertically centers text */
    font-family: sans-serif;
    margin-bottom: 20px;
    animation: pulse 2s infinite
}

.offers h3 span{
    font-size: 25px;
    color: var(--services-background);
}

.offers p{
    margin-left: 20px;
    text-align: center;
    font-size: 20px;
    color: var(--header-link);
    font-weight: 500;
    padding: 10px 5px;
}

.offers button{
    display: block;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #fff;
    color: var(--header-color);
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
}
.offers button:hover{
  transform:  translateY(3px);
  cursor: pointer;
}

.offers a{
    text-decoration: none;
    color: var(--header-color);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}


/* Management Section */
#management{
    padding: 20px 10px;
    text-align: center;
    background-color: var(--header-color);
    color: var(--header-link);
}

#management h3{
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.team{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

}

/* Team Member Cards */

.ceo{
    border-radius: 5px;
    color: #fff;
    padding: 60px 20px ;
    width: 200px;
    margin-right: 10px;
    border-right: 2px solid var(--footer-color);
}

.barista{
    border-radius: 5px;
    background-color: var(--footer-color);
    padding: 60px 20px ;
    color: #fff;
    width: 200px;
   
}

.crm{
    border-radius: 5px;
    padding: 60px 20px ;
    width: 200px;
    color: #fff;
    margin-left: 50px;
    border-left: 2px solid var(--footer-color);
}
.ceo img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: center;
    margin-bottom: 20px;
}

.barista img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.crm img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}


.ceo h4, .barista h4, .crm h4{
    font-size: 20px;
    font-weight: 400;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom: 20px;
}

.ceo p, .barista p, .crm p{
    font-size: 15px;
    font-weight: 200;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

hr{
    border: none;
    border-top: 1px solid var(--footer-color);
    margin: 10px 0;
}

.barista hr{
    border: none;
    border-top: 1px solid var(--header-link);
    margin: 10px 0;
}
/* Hover Effects for Team Members */
.ceo:hover, .barista:hover, .crm:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*Menu Section */
#menu{
    padding: 20px 10px;
    color: var(--services-text);
}

.menu{
    display: flex;
    gap: 20px;
 }

.left-side{
    margin-left: 100px;
    justify-content: center;
    align-items: center;
}

.left-side p{
    margin-top: 10px;
    color: var(--header-link);
    font-weight: 200;
    text-align: left;
    width: 500px;
    overflow: break-word;
}

.left-side h3{
    margin-top: 10px;
    color: var(--header-link);
    font-weight: bold;
    text-align: left;
    width: 500px;
    overflow: break-word;
}
.left-side img{
    width: 25px;
    height: 25px;
    border-radius: 5px;
}

.bonafide{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;

}

.right-side{
    margin-right: 100px;
}

.right-side h3{
    margin-top: 10px;
    color: var(--footer-color);
    font-weight: bold;
    text-align: center;
    width: 500px;
    overflow: break-word;
}

.menu-card{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.links{
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.tour a{
    text-decoration: none;
    color: var(--header-link);
    font-size: 15px;
    font-weight: bold;
    padding: 10px 20px;
    background-color: var(--header-color);
    border-radius: 8px;
}

.mail a{
    text-decoration: none;
    background-color: var(--footer-color);
    color:#fff;
    font-size: 15px;
    font-weight: bold;
    padding: 10px 20px;
    background-color: var(--footer-color);
    border-radius: 8px;
}

.menu-card div:hover{
    width: 170px;
    text-align: center;
    margin-right: 10px;
    overflow: break-word;
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card div:first-of-type(1):hover{
    width: 155px;
    margin-right: 10px;
    overflow: break-word;
    transform: translateY(-5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card div:first-of-type(2):hover{
    width: 155px;
    margin-right: 10px;
    overflow: break-word;
    box-shadow: 0 4px 8px var(--footer-color);
    transform: translateY(-5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Menu Item Cards */
.cap, .mocha, .flatw, .affo{
    width: 155px;
    padding: 20px;
    text-align: center;
    margin-right: 10px;
    color: var(--header-link);
    border-radius: 5px;
}
.cap img, .mocha img, .flatw img, .affo img{
    width: 80px;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    height: 80px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.cap p{
    font-size: 15px;
    font-weight: 200;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    width: 150px;
    overflow: break-word;
}

.mocha p{
    font-size: 15px;
    font-weight: 200;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    width: 150px;
    overflow: break-word;
}

.flatw p{
    font-size: 15px;
    font-weight: 200;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    width: 150px;
    overflow: break-word;
}

.affo p{
    font-size: 15px;
    font-weight: 200;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    width: 150px;
    overflow: break-word;
}

.cap h4, .mocha h4, .flatw h4, .affo h4{
    font-size: 18px;
    font-weight: 400;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom: 10px;
    text-align: center;
}
 /* Contact-Us Page Section */
 #contact{
    padding: 40px 20px;
 }
   .contact-us{
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
   }

   .form{
    flex: 1;
    min-width: 280px;
    padding: 20px;
   }

   .form h3{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: 400;
    text-shadow: 0 0 20px var(--footer-color);
    color: var(--footer-color);
    font-size: 24px;
    margin-bottom: 5px;
   }

   .form p{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: var(--header-color);
    font-size: 36px;
    margin-bottom: 20px;
   }

   form{
    padding: 15px 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
    font-size: 14px;
   }

   #contact-us label{
    display: block;
    padding-bottom: 8px;
    color: var(--header-color);
    font-size: 16px;
    font-weight: 500;
    margin-top: 12px;
   }

   #contact-us input{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #ddd;
    margin-top: 5px;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-size: 14px;
    transition: border-color 0.3s ease;
   }

   #contact-us input:focus{
    outline: none;
    border-color: var(--footer-color);
   }

   #contact-us textarea{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #ddd;
    margin-top: 5px;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-size: 14px;
    min-height: 120px;
    resize: vertical;
    transition: border-color 0.3s ease;
   }

   #contact-us textarea:focus{
    outline: none;
    border-color: var(--footer-color);
   }

   #contact-us button{
    padding: 12px 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 250px;
    background-color: var(--footer-color);
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
   }

   #contact-us button:hover{
    background-color: #5a3a26;
   }

    .form-section{
        background-color: var(--footer-color);
        flex: 1;
        min-width: 280px;
        color: #fff;
        padding: 25px;
        font-weight: 300;
        font-family: Arial, Helvetica, sans-serif;
        border-radius: 8px;
    }

    .form-section h5{
        font-size: 16px;
        color: #fff;
        padding: 0;
        font-style: italic;
        font-weight: 200;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        overflow: break-word;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .form-section img{
        filter: invert(100%) sepia(0%) saturate(7498%) hue-rotate(193deg) brightness(109%) contrast(101%);
        width: 30px;
        height: 30px;
        margin-bottom: 10px;
    }

    .icons{
        display: grid;
        align-items: center;
        gap: 20px;
        grid-template-columns: 1fr 1fr;
    }

    .column{
        padding: 10px;
        text-align: center;
    }

    .column h3{
        font-size: 16px;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .column p{
        font-size: 14px;
        word-wrap: break-word;
    }
/*Footer Section */
footer{
    background-color: var(--footer-color);
    color: var(--header-link);
    text-align: center;
    padding: 30px 20px;
    min-height: 8vh;
}

.footer{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.name h3{
    padding: 5px 0;
    color: #fff;
    font-weight: 400;
    margin: 0;
    font-size: 18px;
}

.name p{
    color: #fff;
    font-weight: 400;
    margin: 0;
    font-size: 14px;
}

#socials{
    display: flex;
    gap: 20px;
    filter: invert(100%) sepia(0%) saturate(7498%) hue-rotate(193deg) brightness(109%) contrast(101%);
    flex-wrap: wrap;
    padding: 5px;
    justify-content: center;
}

#socials div {
    cursor: pointer;
    transition: transform 0.3s ease;
}

#socials a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

#socials a img{
    width: 100%;
    height: 100%;
}

#socials div:hover{
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

.conditions{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.conditions a{
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.conditions a:hover{
    color: var(--header-color);
    transition: color 0.3s ease;
}
/* Responsive Design */
@media (max-width: 768px) {
    /* Header */
    .header {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        padding: 10px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .logo h3 {
        margin-left: 20px;
        text-align: center;
    }

    .navs {
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        background-color: var(--header-color);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1001;
        display: none;
        visibility: hidden;
    }

    .menu-toggle {
        display: block;
        margin-right: 20px;
    }

    .navs a {
        font-size: 14px;
        padding: 10px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-toggle:checked + .menu-toggle + .navs {
        transform: translateX(0);
        display: flex;
        visibility: visible;
    }

    /* Hero Section */
    #home{
        height: auto;
        margin-bottom: 10px;
    }
    #home h2 {
        margin-left: 40px;
        width: 100%;
        max-width: 300px;
        overflow: break-word;
        font-size: 32px;
        margin-top: 40vh;
    }

    #home p {
        font-size: 16px;
        margin-left: 40px;
        width: 100%;
        max-width: 300px;
        overflow: break-word;
    }

    .buttons {
        padding: 100px 20px;
        margin-left: 20px;
        gap: 30px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    /* Services Section */
    #services {
        margin-left: 0;
        padding: 20px 10px;
    }

    #services h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    #card {
        flex-direction: column;
        gap: 20px;
        padding: 20px 10px;
    }

    .card1 {
        max-width: 100%;
        min-width: auto;
    }

    .card1 p {
        font-size: 14px;
    }

    /* About Section */
    .about {
        flex-direction: column;
    }

    .desc, .offers {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }

    .desc h3, .desc p, .desc button {
        margin-left: 0;
        margin-right: 0;
        padding: 10px;
    }

    
    .offers h3 {
        margin-left: auto;
        margin-right: auto;
    }

    .offers h4 {
        margin-left: 0;
    }

    .offers p {
        margin-left: 0;
    }

    /* Contact Section */
    .contact-us {
        flex-direction: column;
        margin-left: 0;
        gap: 20px;
        padding: 0 10px;
    }

    .form,
    .form-section {
        width: 100%;
        flex: none;
    }

    .form {
        margin-bottom: 10px;
    }

    .form-section h5 {
        width: 100%;
        margin: 0 0 20px;
    }

    .icons {
        grid-template-columns: 1fr;
    }

    .form-section img {
        margin-left: 0;
    }

    /* Footer */
    .footer {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .name h3, .name p {
        margin-left: 0;
        margin: 0;
    }

    #socials {
        justify-content: center;
        margin: 10px 0;
    }

    .conditions {
        justify-content: center;
        margin: 0;
    }
}

@media (max-width: 480px) {
    /* Hero Section */
    #home h2 {
        font-size: 24px;
        margin-top: 5vh;
    }

    #home p {
        font-size: 14px;
    }

    .buttons {
        padding: 10px;
        gap: 10px;
    }

    .buttons a {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Additional responsive refinements */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .left-side,
    .right-side {
        margin: 0 20px;
        width: auto;
    }

    .left-side h3,
    .left-side p,
    .right-side h3 {
        width: auto;
    }

    .menu-card {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .cap,
    .mocha,
    .flatw,
    .affo {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .links {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 10px;
        align-items: stretch;
    }

    .tour a,
    .mail a {
        width: 100%;
        text-align: center;
    }

    .team {
        flex-direction: column;
        gap: 20px;
    }

    .ceo,
    .barista,
    .crm {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        border-left: none;
        border-right: none;
    }

    .crm {
        margin-left: 0;
    }

    .contact-us {
        flex-direction: column;
        margin-left: 0;
        gap: 20px;
        padding: 0 20px;
    }

    .form,
    .form-section {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .form-section h5 {
        width: auto;
        margin: 0 0 20px;
    }

    .icons {
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
        grid-template-columns: 1fr;
    }

    #contact-us input,
    #contact-us textarea {
        width: 100%;
        max-width: 100%;
    }

    #contact-us button {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .menu-card div:hover {
        width: auto;
    }

    .offers h3 {
        margin-left: 70px;
        margin-right: 0;
    }

    .column h3,
    .column p {
        font-size: 16px;
    }

    .icons {
        gap: 10px;
    }

    .form p {
        font-size: 32px;
    }

    .contact-us {
        padding: 0 10px;
    }
}
