/* --- Global Styles --- */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Familjen Grotesk", sans-serif;
    overflow-x: hidden;
    background-color: #ffffff;
}

/* Reusable Button Style */
.main-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 49px;
    border-radius: 100px;
    padding: 12px 36px;
    font-family: "Familjen Grotesk", sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    color: white;
    outline: 0;
    border: 0;
    background: linear-gradient(to right, #00d1ff, #1a83ff);
    background-size: 200% auto;
    background-position: left center;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.main-btn:hover {
    background-position: right center;
}

/* --- Page 1: Hero & Navbar --- */
.page1 {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding-bottom: 50px;
}

.navbar {
    width: 90%;
    max-width: 1300px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
}

.logo img {
    width: 174px;
    height: 40px;
    object-fit: contain;
}

.navbar .links {
    display: flex;
    gap: 20px;
}

.navbar .links a {
    text-decoration: none;
    color: black;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 18px;
    position: relative;
    padding: 5px 0;
}

.navbar .links a::after {
    content: '';
    width: 0%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: -2px;
    border-radius: 10px;
    background: linear-gradient(to right, #00d1ff, #1a83ff);
    transition: 0.3s ease;
}

.navbar .links a:hover::after {
    width: 100%;
}

.menu-toggle {
    font-size: 24px;
    background: none;
    border: none;
    color: black;
    cursor: pointer;
    display: none;
}

/* Hero Main Area */
.hero-main {
    width: 90%;
    max-width: 1300px;
    margin: 40px auto 0;
    position: relative;
}

.circle {
    width: 400px;
    height: 400px;
    border: 5px solid transparent;
    background: linear-gradient(white, white) padding-box, linear-gradient(#4dfbfb, #788eff) border-box;
    border-radius: 50%;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
    margin-top: -300px;
    position: relative;
    z-index: 2;
}

.text1 h1 {
    font-weight: 600;
    font-size: 42px;
    line-height: 1.2;
    color: #111;
}

.paragraph1 {
    margin-top: 15px;
    font-weight: 400;
    font-size: 20px;
    color: #555;
}

.button2 {
    margin-top: 25px;
}

.bottle1 {
    width: 180px;
    height: 180px;
    background: linear-gradient(to top, #4dfbfb, #788eff);
    border-radius: 50%;
    position: absolute;
    top: 50px;
    left: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottle2 {
    width: 80px;
    object-fit: contain;
}

.bottleright {
    width: 180px;
    height: 180px;
    background: linear-gradient(to top, #4dfbfb, #788eff);
    border-radius: 50%;
    position: absolute;
    top: 50px;
    right: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottle3 {
    width: 100px;
    object-fit: contain;
}

/* --- Page 2: Dark Showcase --- */
.page2 {
    width: 100%;
    min-height: 100vh;
    background-color: #20292c;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.page2 .container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.imgcont {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-bg-img {
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
}

.middlebottle {
    position: absolute;
    height: 90%;
}

.middlebottle img {
    height: 100%;
    object-fit: contain;
}

.rightside {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.icon1 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.img1 img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.textpage2 p {
    color: white;
    font-weight: 400;
    font-size: 28px;
}

/* --- Page 3: Shop / Grid Section --- */
.page3 {
    width: 100%;
    padding: 80px 0;
}

.container2 {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.header3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.lefttext h1 {
    font-weight: 600;
    font-size: 45px;
    line-height: 1.1;
}

.lefttext p {
    font-weight: 400;
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

.bygrid3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.innercontainer {
    background: #fdfdfd;
    border-radius: 15px;
    overflow: hidden;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page3img {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 10px;
    background: #f7f7f7;
}

.page3img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.page3img img:hover {
    transform: scale(1.05);
}

.innercontainer p {
    font-weight: 600;
    font-size: 20px;
}

/* --- Page 4: About Background Fixed --- */
.page4 {
    width: 100%;
    min-height: 100vh;
    background-image: url('13264384_5195021 1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.container3 {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.leftsideheder3 h1 {
    color: white;
    font-weight: 600;
    font-size: 50px;
}

.leftsideheder3 p {
    color: #00d1ff;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin-top: 20px;
}

.leftside3 {
    flex: 1;
}

.leftside3 p {
    color: white;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.rightside3 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box1 {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 450px;
    height: 100px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(0,0,0,0.1));
    backdrop-filter: blur(10px);
    padding: 0 20px;
    gap: 20px;
}

.box1 h1 {
    color: white;
    font-weight: 600;
    font-size: 40px;
}

.box1 h2 {
    color: white;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

/* --- Page 5: FAQ Accordion --- */
.page5 {
    width: 100%;
    background-color: #F3F5F6;
    padding: 80px 0;
}

.container4 {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.textpage1-5, .textpage5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-radius: 15px;
    padding: 25px 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.textpage1-5 {
    border-radius: 20px 20px 15px 15px;
}

.textpage5-end {
    border-radius: 15px 15px 20px 20px;
}

.textpage1-5 h1, .textpage5 h1, .textpage5-end h1 {
    color: #a4a5a5;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 36px;
}

.innertext {
    flex: 1;
    padding: 0 30px;
}

.innertext h2, .textpage5 h2, .textpage5-end h2 {
    font-weight: 600;
    font-size: 20px;
    color: #111;
}

.innertext p {
    font-size: 14px;
    color: #7b7b7b;
    margin-top: 5px;
}

.x-mark, .plus {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.x-mark {
    background: linear-gradient(to right, #00D1FF, #1A83FF);
    color: white;
}

.plus {
    background-color: #e1e2e2;
    color: #000;
}

/* --- Page 6: Contact Form --- */
.page6 {
    width: 100%;
    background-color: #F3F5F6;
    padding: 80px 0;
    position: relative;
    min-height: 700px;
}

.container5 {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #201F1FCC, #201F1F);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rightside6 h1 {
    font-weight: 600;
    font-size: 36px;
    color: white;
    text-align: center;
    margin-bottom: 10px;
}

.rightside6 p {
    font-weight: 400;
    font-size: 14px;
    color: #aaa;
    text-align: center;
    margin-bottom: 30px;
}

.forms form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.forms label, .forms h1, .forms h2 {
    font-size: 15px;
    color: white;
    font-weight: 400;
    margin-bottom: -5px;
}

.name, .name2 {
    font-family: "Familjen Grotesk", sans-serif;
    font-size: 15px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #8D8D8D;
    background-color: #343333;
    color: white;
    padding: 12px 15px;
    outline: none;
}

.name2 {
    height: 120px;
    resize: vertical;
}

.forms button {
    margin: 20px auto 0;
}

/* --- Page 7: Footer --- */
.page7 {
    width: 100%;
    background-color: #201F1F;
    color: white;
    padding-top: 50px;
}

.container6 {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.nav2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.nav2 a, .nav3 a {
    text-decoration: none;
    color: white;
    text-transform: capitalize;
    font-size: 18px;
    transition: color 0.3s;
}

.nav2 a:hover, .nav3 a:hover {
    color: #00d1ff;
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 0;
    gap: 20px;
}

.icons7 {
    display: flex;
    gap: 15px;
}

.fontawesome-iconf, .fontawesome-iconi, .fontawesome-iconx {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: background 0.3s;
}

.fontawesome-iconf:hover, .fontawesome-iconi:hover, .fontawesome-iconx:hover {
    background-color: #00d1ff;
}

.footer-sub-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.copyright {
    width: 100%;
    background-color: #171616;
    padding: 15px 0;
    text-align: center;
}

.copyright p {
    color: #858585;
    font-size: 14px;
}

/* --- Responsive Design (Media Queries) --- */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .navbar .links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 20px 30px;
        z-index: 100;
    }

    .navbar .links.show {
        display: flex;
    }

    .navbar .links a {
        color: black;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .button1 {
        display: none;
    }

    .bottle1, .bottleright {
        display: none;
    }

    .circle {
        width: 280px;
        height: 280px;
    }

    .hero-content {
        margin-top: -210px;
    }

    .text1 h1 {
        font-size: 28px;
    }

    .paragraph1 {
        font-size: 16px;
    }

    /* Page 2 adjustments */
    .page2 .container {
        flex-direction: column;
    }

    .imgcont {
        display: none;
    }

    .rightside {
        width: 100%;
        gap: 20px;
    }

    .rightside .icon1 {
        justify-content: flex-start;
    }

    .textpage2 p {
        font-size: 20px;
    }

    /* Header 3 */
    .header3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .rightbotton {
        display: none;
    }

    .bygrid3 {
        grid-template-columns: 1fr;
    }

    /* Page 4 adjustments */
    .content-wrapper {
        flex-direction: column;
    }

    .rightside3 {
        width: 100%;
    }

    .box1 {
        max-width: 100%;
    }

    /* Page 5 Accordion */
    .textpage1-5, .textpage5 {
        padding: 15px 20px;
    }

    .textpage1-5 h1, .textpage5 h1, .textpage5-end h1 {
        font-size: 24px;
    }

    .innertext h2, .textpage5 h2, .textpage5-end h2 {
        font-size: 16px;
    }

    .innertext p {
        font-size: 12px;
    }

    /* Footer adjustments */
    .footer-links, .footer-sub-links {
        flex-direction: column;
        gap: 10px;
    }

    .nav2 {
        flex-direction: column;
        align-items: flex-start;
    }
}