/* Base Styles & Variables */
:root {
    --gold-primary: #d4af37;
    --gold-secondary: #c5a028;
    --gold-accent: #f8e798;
    --gold-light: #f5f0e1;
    --dark-primary: #222222;
    --dark-secondary: #333333;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--dark-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--gold-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.btn:hover {
    background-color: var(--gold-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary {
    background-color: var(--gold-primary);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
    background-color: var(--gold-primary);
    color: var(--white);
}

.btn-small {
    padding: 8px 18px;
    font-size: 12px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--dark-primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--gold-primary);
    bottom: -10px;
    left: 25%;
}

.section-header p {
    color: var(--dark-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 28px;
    color: var(--dark-primary);
    letter-spacing: 1px;
}

.logo h1 span {
    color: var(--gold-primary);
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--dark-primary);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--gold-primary);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--gold-primary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links li a:hover::after, .nav-links li a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--dark-primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Logo Styling */
.logo a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-primary);
    margin: 0;
    letter-spacing: 1px;
}

.logo h1 span {
    color:#6d1e21;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Updated Header Styling */
header {
    position: sticky; /* Changed from fixed to sticky */
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 8px 0; /* Reduced from 15px to 8px */
}

/* Updated Logo Styling - Smaller dimensions */
.logo-img {

    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; /* Reduced from 28px */
    font-weight: 700;
    color: var(--dark-primary);
    margin: 0;
    letter-spacing: 1px;
}

/* Adjust nav links to be more compact */
.nav-links {
    display: flex;
    align-items: center;
    height: 40px; /* Set a fixed height */
}

.nav-links li a {
    padding: 8px 12px; /* Reduce padding if you have any */
    line-height: 1.2; /* Tighter line height */
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    header {
        padding: 6px 0; /* Even smaller padding on mobile */
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
}

@media screen and (max-width: 576px) {
    header {
        padding: 5px 0;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .logo h1 {
        font-size: 18px;
    }
}

/* Ensure hamburger menu is properly aligned */
.hamburger {
    display: none;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 101;
    }
    
    .hamburger .line {
        width: 25px;
        height: 3px;
        background-color: var(--dark-primary);
        margin: 5px 0;
        transition: all 0.3s ease;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.5s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 0;
    }
    
    .nav-links.active {
        right: 0;
    }
}




/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 50%;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--gold-primary);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s forwards 0.5s;
}

.hero-image {
    max-width: 45%;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s forwards 0.8s;
    border: 5px solid var(--gold-primary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--white);
}

.hero-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--gold-accent);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Featured Products */
.featured-products {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-primary);
}

.product-info p {
    color: var(--dark-secondary);
    margin-bottom: 15px;
    font-size: 14px;
}

.view-all {
    text-align: center;
    margin-top: 20px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--gold-primary);
    border-radius: 10px;
    z-index: -1;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-item .counter {
    font-size: 40px;
    font-weight: 700;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--dark-primary);
    color: var(--white);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease;
    padding: 20px;
    display: none;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
    display: block;
}

.quote {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.quote i {
    color: var(--gold-primary);
    font-size: 24px;
    margin-bottom: 15px;
}

.quote p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
}

.client-info h4 {
    color: var(--gold-accent);
    margin-bottom: 5px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.control-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.control-dot.active, .control-dot:hover {
    background-color: var(--gold-primary);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info, .contact-form {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    color: var(--gold-primary);
    font-size: 24px;
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--dark-primary);
}

.info-item p {
    color: var(--dark-secondary);
    line-height: 1.4;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--dark-primary);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--gold-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid var(--gray-medium);
    font-family: 'Raleway', sans-serif;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Footer */
footer {
    background-color: var(--dark-primary);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-logo h2 span {
    color: #6d1e21;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold-primary);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}



/* Mobile Navigation */
@media (max-width: 992px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        flex-direction: column;
        background-color: var(--white);
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        padding: 100px 30px;
        transition: 0.5s;
        gap: 20px;
        align-items: flex-start;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .nav-links li a {
        font-size: 18px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        width: 100%;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-content {
        padding: 20px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .product-info h3 {
        font-size: 18px;
    }
}

/* Utility Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: var(--transition);
    cursor: pointer;
}

.scroll-down:hover {
    opacity: 1;
}

.scroll-down i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Product Hover Effect */
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 1;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}