:root {
    --bg-main: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: rgba(15, 15, 15, 0.7);
    --gold-primary: #c49b63;
    --gold-light: #e6c88f;
    --gold-dark: #8c6a3c;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: rgba(196, 155, 99, 0.2);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 span {
    color: var(--gold-primary);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 span {
    color: var(--gold-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.gold-icon {
    color: var(--gold-primary);
}

.heart-icon {
    color: transparent;
    -webkit-text-stroke: 1px var(--gold-primary);
    font-weight: 300;
}

/* Utilities */
.section-tag {
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.section-tag.center {
    text-align: center;
    margin-bottom: 2rem;
}

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn i {
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(196, 155, 99, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 155, 99, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo .gold-icon {
    font-size: 2.5rem;
}

.logo h2 {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1;
    letter-spacing: 1px;
}

.logo span {
    font-size: 0.7rem;
    color: var(--gold-primary);
    letter-spacing: 3px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 400;
}

.nav a:hover, .nav a.active {
    color: var(--gold-primary);
}

.nav-cta {
    padding: 0.5rem 1.5rem;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
    padding-top: 8rem;
}

.hero-content {
    padding: 2rem 5% 4rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.subtitle {
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 450px;
    margin: 1.5rem 0 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-main);
    margin-left: -15px;
    object-fit: cover;
}

.avatars img:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.proof-text strong {
    color: var(--text-primary);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--bg-main), transparent);
}

.hero-stats {
    position: absolute;
    right: 5%;
    top: 20%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 8px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    font-size: 1.5rem;
}

.stat-item h4 {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.2;
}

.stat-item span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.mouse {
    width: 20px;
    height: 30px;
    border: 1px solid var(--text-secondary);
    border-radius: 10px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 5px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* Connect Section */
.connect-section {
    padding: 6rem 5% 4rem;
}

.connect-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
}

.connect-content {
    padding: 4rem;
}

.connect-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.fb-card-wrapper {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(196, 155, 99, 0.1) 0%, transparent 70%);
}

.fb-card {
    background: #242526; /* Facebook Dark Mode Style */
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.fb-cover {
    height: 180px;
    width: 100%;
}

.fb-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fb-profile-info {
    display: flex;
    padding: 0 1rem;
    position: relative;
    margin-top: -50px;
}

.fb-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #242526;
    object-fit: cover;
}

.fb-details {
    padding-top: 55px;
    padding-left: 1rem;
}

.fb-details h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin: 0;
}

.fb-details p {
    margin: 0;
    font-size: 0.8rem;
    color: #b0b3b8;
}

.fb-stats {
    margin-top: 0.5rem !important;
}

.fb-actions {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
}

.fb-btn-primary {
    flex: 1;
    background: #2374e1;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.fb-btn-secondary {
    flex: 1;
    background: #3a3b3c;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.fb-social-proof {
    padding: 0 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #3a3b3c;
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.avatars.small img {
    width: 24px;
    height: 24px;
    border: 2px solid #242526;
    margin-left: -8px;
}

.likes-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #b0b3b8;
}

.reaction-icons {
    display: flex;
}

.fb-blue { color: #2374e1; }
.fb-red { color: #f02849; margin-left: -4px; }


/* Stats Banner */
.stats-banner {
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.stat-box i {
    font-size: 2rem;
    color: var(--gold-primary);
    opacity: 0.8;
}

.stat-info h3 {
    font-size: 1.5rem;
    margin: 0;
}

.stat-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.section-header h2 {
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
    border: 1px solid var(--border-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    padding: 6rem 5%;
    background: linear-gradient(to bottom, transparent, rgba(196, 155, 99, 0.05), transparent);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--border-color);
    transform: translateY(-5px);
}

.gold-icon.large {
    font-size: 2rem;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: #000;
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 1.5rem 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.social-icons a:hover {
    color: var(--text-primary);
}

.footer h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.subscribe-form {
    display: flex;
}

.subscribe-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: white;
    outline: none;
    font-family: var(--font-body);
}

.subscribe-form input:focus {
    border-color: var(--gold-primary);
}

.subscribe-form button {
    border-radius: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gold-primary);
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(196, 155, 99, 0.4);
    z-index: 100;
    transition: var(--transition);
}

.floating-btn i {
    font-size: 1.5rem;
    line-height: 1;
}

.floating-btn span {
    font-size: 0.5rem;
    font-weight: 700;
    margin-top: 2px;
}

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

/* Media Queries for Mobile/Tablet */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .hidden-mobile { display: none; }
    .connect-container { grid-template-columns: 1fr; }
    .connect-content { padding: 3rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-main);
        flex-direction: column;
        padding: 2rem 5%;
        border-bottom: 1px solid var(--border-color);
        gap: 1.5rem;
    }
    .nav.active { display: flex; }
    .nav-cta { display: none; }
    .mobile-menu { display: block; }
    
    .hero {
        grid-template-columns: 1fr;
        padding-top: 6rem;
    }
    
    .hero-content {
        padding: 2rem 5%;
        text-align: center;
        align-items: center;
    }
    
    .description { text-align: center; }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-group .btn { width: 100%; }
    
    .hero-image-wrapper {
        height: 60vh;
    }
    
    .hero-stats {
        display: none;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        padding-bottom: 1rem;
        gap: 1rem;
        scroll-snap-type: x mandatory;
    }
    
    .gallery-item {
        flex: 0 0 80%;
        scroll-snap-align: center;
    }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .stat-box {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .features-grid { grid-template-columns: 1fr; }
}
