/* General Body & Font Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f9ff; /* bg-sky-50 */
    color: #1f2937; /* text-gray-800 */
    margin: 0;
}

/* Reusable Container */
.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Header & Navigation */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0284c7; /* text-sky-600 */
    text-decoration: none;
}

.main-nav {
    display: none; /* hidden on mobile */
}

.nav-link {
    color: #4b5567; /* text-gray-600 */
    text-decoration: none;
    margin: 0 1rem;
}

.nav-link:hover {
    color: #0ea5e9; /* hover:text-sky-500 */
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #475569; /* text-slate-600 */
}

.icon-button:hover {
    color: #0ea5e9; /* hover:text-sky-500 */
}

.mobile-menu-trigger {
    display: block; /* Visible on mobile */
}

.mobile-menu {
    background-color: #ffffff;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    text-decoration: none;
    color: #1f2937;
}

.mobile-nav-link:hover {
    background-color: #e0f2fe; /* hover:bg-sky-100 */
}

.hidden {
    display: none;
}

/* Main Content Sections */
.hero-section {
    background-image: url('https://res.cloudinary.com/dwgattbka/image/upload/v1756981070/IMG-20250828-WA0005_mnsd9x.jpg');
    background-size: fill;
    background-position: center;
    height: 63vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-attachment: fixed; /* This keeps the parallax effect */
}

.tagline-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
    /* Move the section up to overlap the hero image slightly */
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.tagline-section .container {
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.tagline {
    /* Updated Font Styling */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #0c4a6e; /* text-sky-800 */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}


.section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-light {
    background-color: #ffffff;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    color: #0284c7;
    margin-bottom: 2.5rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.product-card {
    background-color: #f9fafb; /* bg-gray-50 */
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: opacity 0.3s;
}

.product-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: opacity 0.3s;
}

.product-card:hover .product-image {
    opacity: 0.8;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-weight: 600;
    font-size: 1.125rem;
    color: #111827; /* text-gray-900 */
    margin: 0;
}

.product-price {
    color: #4b5567;
    margin-top: 0.5rem;
}

/* Collections Grid */
.collections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.collection-card {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    height: 24rem;
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.collection-card:hover .collection-image {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-content {
    text-align: center;
    padding: 1rem;
}

.collection-title {
    color: #ffffff;
    font-size: 1.875rem;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-light {
    background-color: #ffffff;
    color: #111827;
}

.btn-light:hover {
    background-color: #e5e7eb; /* hover:bg-gray-200 */
}

.btn-primary {
    background-color: #0ea5e9; /* bg-sky-500 */
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background-color: #0284c7; /* hover:bg-sky-600 */
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon-bg {
    background-color: #e0f2fe; /* bg-sky-100 */
    padding: 1rem;
    border-radius: 9999px;
}

.feature-icon {
    color: #0ea5e9; /* text-sky-500 */
}

.feature-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #0284c7;
}

/* Footer */
.site-footer-main {
    background-color: #0f172a; /* bg-slate-900 */
    color: #ffffff;
}

.site-footer-main .container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-title.logo-font {
    color: #38bdf8; /* text-sky-400 */
}

.footer-text {
    color: #94a3b8; /* text-gray-400 */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
}

.footer-link:hover {
    color: #38bdf8;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #94a3b8;
}

.social-link:hover {
    color: #38bdf8;
}

.newsletter-input {
    width: 100%;
    background-color: #1e293b; /* bg-slate-800 */
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: none;
    box-sizing: border-box;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    width: 100%;
    margin-top: 0.5rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #1e293b; /* border-slate-800 */
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #64748b; /* text-gray-500 */
}

/* Responsive Media Queries */

/* Medium screens (tablets) */
@media (min-width: 768px) {
    .main-nav {
        display: flex;
        align-items: center;
    }
    .mobile-menu-trigger, .mobile-menu {
        display: none;
    }
    .hero-section {
        height: 80vh;
        background-image: url('https://res.cloudinary.com/dwgattbka/image/upload/w_1920,q_auto,f_auto/v1756981070/IMG-20250828-WA0005_mnsd9x.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .collections-grid, .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large screens (desktops) */
@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}