:root {
    --gold: #D4AF37;
    --gold-light: #E5C76B;
    --dark: #111111;
    --cream: #F8F3E6;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

.gold-text {
    color: var(--gold);
}

.bg-gold {
    background-color: var(--gold);
}

.bg-dark {
    background-color: var(--dark);
}

.bg-cream {
    background-color: var(--cream);
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)), url('https://images.pexels.com/photos/1246421/pexels-photo-1246421.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Add overlay for better text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
    border-left: 3px solid var(--gold);
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

@media print {
    .whatsapp-btn {
        display: none;
    }
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: var(--dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.navbar-logo {
    height: 80px;
    width: auto;
    transition: height 0.3s ease;
}

.navbar.scrolled .navbar-logo {
    height: 60px;
}

.nav-link {
    position: relative;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    text-decoration: none;
    margin: 0 0.5rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-light);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .navbar .hidden.md\:flex {
        display: none;
    }

    .navbar {
        padding: 0.5rem 1rem;
    }

    .navbar-logo {
        height: 50px;
    }
}

/* Custom animation classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: var(--dark);
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu.hidden {
    display: none;
}

.mobile-menu a {
    color: white;
    font-size: 1.25rem;
    padding: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    width: 100%;
    text-align: center;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.mobile-menu button:hover {
    transform: scale(1.1);
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 100;
    background-color: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.scroll-top:hover {
    transform: scale(1.1);
}

/* Form validation styles */
.form-error {
    border-color: #dc2626 !important;
}

.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Loading state for buttons */
.btn-loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Tooltip styles */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-text {
    visibility: hidden;
    background-color: var(--dark);
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }

    .navbar-logo {
        height: 50px;
    }

    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)), url('https://images.unsplash.com/photo-1583391733956-3750e0ff4e8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        background-size: cover;
        background-position: center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.125rem;
    }

    .product-card {
        margin-bottom: 1.5rem;
    }

    .testimonial-card {
        margin-bottom: 1.5rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }
}

/* Additional Mobile Breakpoints */
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .navbar-logo {
        height: 40px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .product-card:hover {
        transform: none;
    }

    .nav-link:hover::after {
        width: 0;
    }
}

/* Better Touch Targets for Mobile */
@media (max-width: 768px) {
    .nav-link,
    .mobile-menu a,
    button {
        padding: 0.75rem 1rem;
        min-height: 44px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
} 