@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Pinyon+Script&family=Public+Sans:wght@200;300;400;500;600&display=swap');

:root {
    /* Wix-inspired Palette */
    --primary-maroon: #630E14;
    --accent-gold: #C5A059;
    --bg-cream: #FFFDF7;
    --text-dark: #3B331A;
    --text-muted: #6B6553;
    --white: #FFFFFF;
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    
    /* Shadows & Transitions */
    --shadow-premium: 0 20px 40px rgba(0,0,0,0.08);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Public Sans', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, .serif {
    font-family: 'EB Garamond', serif;
    font-weight: 500;
}

.script {
    font-family: 'Pinyon Script', cursive;
    color: var(--accent-gold);
    font-size: 2.5rem;
}

.cinzel {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.15em;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(255, 253, 247, 0.95);
    padding: 1.2rem 5%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

.logo-container img {
    height: 70px;
    transition: var(--transition-smooth);
}

header.scrolled .logo-container img {
    height: 55px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-maroon);
}

.btn-inquire {
    background: var(--primary-maroon);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 2px;
    font-size: 0.8rem !important;
    letter-spacing: 2px !important;
    transition: var(--transition-smooth) !important;
}

.btn-inquire:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(99, 14, 20, 0.2);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 0 5%;
    background: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 900px;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.hero-content p {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    text-transform: uppercase;
}

/* Collections Header */
.collections-intro {
    padding: 100px 5% 60px;
    text-align: center;
}

.collections-intro .script {
    margin-bottom: 1rem;
}

.collections-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 5% 100px;
}

.portfolio-item {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 51, 26, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.portfolio-overlay .btn-small {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Trust Section */
.trust-section {
    background: var(--white);
    padding: 100px 5%;
    text-align: center;
    border-top: 1px solid #f0e6d2;
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.trust-item img {
    height: 80px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: 0.3s;
}

.trust-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Bespoke Section */
.bespoke {
    background: #1A1A1A;
    color: var(--white);
    padding: 120px 5%;
    text-align: center;
}

.bespoke h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.bespoke p {
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.8;
}

.btn-bespoke {
    background: var(--accent-gold);
    color: #1A1A1A;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.btn-bespoke:hover {
    transform: scale(1.05);
    background: #d4af37;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 700px;
}

.contact-map {
    width: 100%;
    height: 100%;
}

.contact-info {
    padding: 100px 10%;
    background: var(--bg-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.info-group {
    margin-bottom: 2.5rem;
}

.info-group h4 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.info-group p {
    font-size: 1.1rem;
}

/* Footer */
footer {
    padding: 80px 5% 40px;
    background: var(--primary-maroon);
    color: var(--white);
    text-align: center;
}

.footer-logo {
    height: 80px;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 3rem;
}

.footer-socials a {
    color: var(--white);
    font-size: 1.5rem;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    font-size: 0.8rem;
    opacity: 0.6;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
}

/* Floating FAB */
.fab-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1001;
    text-decoration: none;
    transition: 0.3s;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-section {
        grid-template-columns: 1fr;
        height: auto;
    }
    .contact-map {
        height: 400px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }
    nav {
        display: none;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .bespoke h2 {
        font-size: 2rem;
    }
}

