/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-navy: #0a0e17;
    --rose-gold: #B76E79;
    --soft-ivory: #F5F1E8;
    --dark-charcoal: #2A2A2A;
    --metallic-silver: #C0C0C0;
    --accent-purple: #8B5FBF;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    line-height: 1.7;
    color: var(--dark-charcoal);
    background: var(--soft-ivory);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Custom Font Classes */
.serif-font {
    font-family: 'Cormorant Garamond', serif;
}

.modern-font {
    font-family: 'Poppins', sans-serif;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(183, 110, 121, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--rose-gold);
    padding: 2px;
    background: var(--soft-ivory);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--soft-ivory);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.logo-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--rose-gold);
    margin-top: 5px;
}

/* Navigation */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--soft-ivory);
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    padding: 10px 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rose-gold);
    transition: var(--transition);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--rose-gold);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--deep-navy);
    min-width: 220px;
    border: 1px solid var(--rose-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(183, 110, 121, 0.1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 15px 25px;
    color: var(--soft-ivory);
    transition: var(--transition);
    font-size: 0.8rem;
}

.dropdown-menu a:hover {
    background: var(--rose-gold);
    color: var(--deep-navy);
    padding-left: 35px;
}

.hamburger {
    display: none;
    color: var(--soft-ivory);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(102, 168, 219, 0.9), rgba(83, 64, 125, 0.9)), url('bg3.jpg');
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(183, 110, 121, 0.1) 0%, transparent 1.1rem),
        radial-gradient(circle at 80% 20%, rgba(139, 95, 191, 0.1) 0%, transparent 1.1rem);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 10%;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--soft-ivory);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--rose-gold);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border: none;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--rose-gold);
    color: var(--soft-ivory);
    border: 1px solid var(--rose-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--rose-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--soft-ivory);
    border: 1px solid var(--soft-ivory);
}

.btn-secondary:hover {
    background: var(--soft-ivory);
    color: var(--deep-navy);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--dark-charcoal);
    border: 1px solid var(--rose-gold);
    padding: 12px 30px;
}

.btn-outline:hover {
    background: var(--rose-gold);
    color: var(--soft-ivory);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--soft-ivory);
    text-align: center;
    animation: bounce 2s infinite;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.scroll-indicator i {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
}

/* About Preview Section */
.about-preview {
    padding: 120px 0;
    background: var(--soft-ivory);
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--rose-gold);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--rose-gold);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--deep-navy);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--dark-charcoal);
    font-size: 1.1rem;
    line-height: 1.8;
}

.image-frame {
    position: relative;
    perspective: 1000px;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--rose-gold);
    z-index: -1;
    transition: var(--transition);
}

.image-frame:hover::before {
    transform: rotate(-2deg) translateX(10px) translateY(10px);
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(0.3);
    transition: var(--transition);
}

.image-frame:hover img {
    filter: grayscale(0);
    transform: rotate(1deg) scale(1.02);
}

/* Products Section */
.products {
    padding: 120px 0;
    background: var(--deep-navy);
    color: var(--soft-ivory);
}

.products .section-title {
    color: var(--soft-ivory);
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.category-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #2c2e1a 0%, #121a2c 100%);
    border: 1px solid rgba(183, 110, 121, 0.3);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--rose-gold);
    box-shadow: 0 20px 40px rgba(249, 5, 5, 0.868);
}

.category-image {
    position: relative;
    height: 70%;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(183, 195, 219, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-info {
    padding: 30px;
    text-align: center;
}

.category-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--soft-ivory);
    margin-bottom: 10px;
}

.category-info p {
    color: var(--rose-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(213, 214, 209, 0.9), rgba(128, 49, 213, 0.9)), url('s9.jpg');
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('');
    background-size: 200px;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    color: var(--rose-gold);
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

/* Footer */
footer {
    background: var(--deep-navy);
    color: var(--soft-ivory);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(183, 110, 121, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: var(--rose-gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-img {
    width: 50px;
    height: 50px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
}

.footer-column p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-column ul li a:hover {
    color: var(--rose-gold);
    padding-left: 10px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--rose-gold);
    width: 20px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: transparent;
    color: var(--rose-gold);
    border: 1px solid var(--rose-gold);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--rose-gold);
    color: var(--deep-navy);
    transform: translateY(-3px);
}

.social-links h4 {
    display: inline;
    margin-left: 10px;
    color: var(--soft-ivory);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-content {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--deep-navy);
        transition: var(--transition);
        padding: 50px 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        background: transparent;
        margin-top: 1rem;
        margin-left: 1rem;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .product-categories {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.7rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(183, 110, 121, 0.3);
    border-radius: 50%;
    border-top-color: var(--rose-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1px solid var(--rose-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    background: var(--rose-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease;
    opacity: 0.3;
    mix-blend-mode: difference;
}
/* Product Pages Styling */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    color: var(--light-text);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.product-gallery {
    padding: 80px 0;
    background-color: var(--light-text);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--light-text);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.price {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Gallery Page Styling */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--light-text);
    font-size: 18px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.contact-method {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--accent-color);
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    margin-bottom: 15px;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: #f8f4e9;
}

.click-indicator {
    margin-left: auto;
    color: var(--primary-color);
    font-size: 18px;
    transition: var(--transition);
}

.contact-method:hover .click-indicator {
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--light-text);
    font-size: 20px;
}

.method-details h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.method-details p {
    font-weight: 600;
    margin-bottom: 5px;
}

.method-details span {
    font-size: 14px;
    color: #666;
}

