@import url('https://fonts.googleapis.com/css2?family=Delius+Swash+Caps&display=swap');
/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
}

.min-h-screen {
    min-height: 100vh;
}

.bg-white {
    background-color: #ffffff;
}

/* Navbar Styles */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 50;
}

.fixed-navbar {
    position: fixed;
    top: 0;
    left: 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e11d48;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* General Styles */
.nav-links {
    display: flex;
    align-items: center;
}

/* Dropdown Button */
.dropbtn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    border-radius: 6px;
    position: relative;
}

.dropbtn:hover {
    color: #007bff;
}

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    border: 1px solid #ddd;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    transform: translateY(15px);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.9);
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Links */
.dropdown-content li {
    padding: 0;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s;
    border-left: 4px solid transparent;
    position: relative;
}

.dropdown-content a:hover {
    background: #f5f5f5;
    color: #007bff;
    border-left: 4px solid #007bff;
    transform: translateX(5px);
}

/* Arrow Animation */
.dropbtn svg {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropbtn svg {
    transform: rotate(180deg);
}

/* Subtle Shadow Effect on Hover */
.dropdown-content a:hover::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 6px;
}


/* Button Styles */
.cart-button {
    padding: 0.5rem;
    color: #374151;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.cart-button:hover {
    color: #e11d48;
}

.login-button {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    background-color: #e11d48;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    transition: background-color 0.2s;
    text-decoration: none; /* Ensures no underline */
    border: none; /* Removes any border effect */
}

.login-button:hover {
    background-color: #be123c;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    background-color: transparent; /* Ensure background is transparent */
    border: none;
}

.btn.primary {
    background-color: #e11d48;
    display: inline-flex;
    color: #ffffff;
    text-decoration: none;
    box-shadow:none;
    outline: none;
}

.btn-container {
    background-color: transparent !important;
}
.btn.primary:hover {
    background-color: #be123c;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn.secondary {
    background-color: #ffffff;
    color: #e11d48;
    border: 2px solid #e11d48;
    text-decoration: none;
    display: inline-flex;
    box-shadow:none;
    outline: none;
}

.btn.secondary:hover {
    background-color: #fff1f2;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1450778869180-41d0601e046e?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.hero-content p {
    font-family: 'Delius Swash Caps', cursive;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 300;
    max-width: 48rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .button-group {
        flex-direction: row;
    }

    .hero-content p {
        font-size: 2.25rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #111827;
    color: #ffffff;
    padding: 3rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

