/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* Variables */
:root {
    --yellow: #fbe900;
    --pink: #e21a79;
    --navy: #243670;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(36, 54, 112, 0.1);
    --border-radius-blob: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Brume', 'Montserrat', sans-serif;
    color: var(--navy);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

.text-pink {
    color: var(--pink);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}


.divider {
    line-height: 0;
    display: block;
    width: 100%;
    margin-top: -5px;
    /* helps with any pixel gaps on mobile */
}

.divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: 'Brume', 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.3s;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.logo-img {
    max-height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--pink);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: var(--pink);
}

.nav-links li a:hover::before {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--yellow);
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow);
    border: transparent;
}

.btn:hover {
    background-color: var(--navy);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(36, 54, 112, 0.2);
}

/* Hero Section */
.hero {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--yellow);
}

.hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.shape {
    position: absolute;
    z-index: 0;
    border-radius: var(--border-radius-blob);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--yellow);
    opacity: 0.15;
    top: -100px;
    right: -50px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--pink);
    opacity: 0.1;
    bottom: 50px;
    left: -50px;
}

.dot-pattern {
    background-image: radial-gradient(var(--pink) 2px, transparent 2px);
    background-size: 40px 40px;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h2 {
    font-size: 1.3rem;
    color: var(--pink);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Cards Layer */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 5px solid var(--yellow);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--pink);
    box-shadow: 0 15px 40px rgba(36, 54, 112, 0.15);
}

.card-icon {
    font-size: 3rem;
    color: var(--pink);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Floating Elements */
.floating-btn {
    position: fixed;
    bottom: 25px;
    z-index: 999;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.whatsapp-btn {
    right: 25px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.scroll-top {
    right: 100px;
    background-color: var(--navy);
    color: var(--white);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: var(--pink);
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer h3,
.footer h4 {
    color: var(--yellow);
    margin-bottom: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--pink);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: var(--pink);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Dividers */
.divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.divider .shape-fill {
    fill: var(--white);
}

/* Pages Styles */
.yellow-strip {
    background-color: rgba(251, 233, 0, 0.2);
    padding: 40px;
    border-radius: 30px;
    margin: 40px 0;
    border-left: 5px solid var(--pink);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(36, 54, 112, 0.15);
}

.product-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background-color: #f5f5f5;
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-price {
    color: var(--pink);
    font-weight: 800;
    font-size: 1.3rem;
    margin-top: auto;
    padding-top: 15px;
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--navy);
}

.form-control {
    width: 100%;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: var(--pink);
    background-color: var(--white);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow);
}

/* Mobile */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h2 {
        font-size: 1.1rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: var(--shadow);
        text-align: center;
        gap: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-menu-btn {
        display: block;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .scroll-top {
        right: 25px;
        bottom: 95px;
    }

    .section {
        padding: 40px 0;
    }
}