/* landing.css - Authoritative Craft Aesthetic for B & G Enterprise */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Refined Softened Palette */
    --bg-deep: #f1f5f9;
    /* Pale Slate / Cloud */
    --bg-surface: #f8fafc;
    /* Soft Pearl / Surface */
    --brand-navy: #0f172a;
    /* Midnight Navy */
    --brand-gold: #926f34;
    /* Antique Gold / Bronze */
    --text-main: #1e293b;
    /* Softened Charcoal */
    --text-muted: #475569;
    /* Slate Gray */
    --text-light: #64748b;
    /* Light Gray for secondary info */

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 6rem;

    --radius: 4px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    line-height: 1.2;
    font-weight: 700;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography Helpers - Very Plain English */
.text-gold {
    color: var(--brand-gold);
}

.text-navy {
    color: var(--brand-navy);
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--brand-navy);
    color: white;
}

.btn-primary:hover {
    background-color: #1e293b;
}

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

.btn-outline:hover {
    border-color: var(--brand-navy);
    color: var(--brand-navy);
}

/* Header/Nav */
header {
    padding: 1.5rem 0;
    background: var(--bg-surface);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    border-bottom: 4px solid var(--brand-gold);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(248, 250, 252, 0.6), rgba(248, 250, 252, 0.8));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-surface);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item h3 {
    font-size: 2.5rem;
    color: var(--brand-gold);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-weight: 500;
    color: var(--text-muted);
}

/* Sections General */
.section-title {
    margin-bottom: 4rem;
    text-align: center;
}

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

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Feature Image Placeholders */
.feature-img {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: var(--bg-deep);
    border-radius: var(--radius);
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.copy-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.copy-block p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.premium-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.p-feature {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.p-icon {
    width: 24px;
    height: 24px;
    color: var(--brand-gold);
    flex-shrink: 0;
}

.p-feature strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main);
}

.p-feature p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0 !important;
}

/* Export / Container Gallery */
.export-section {
    background-color: var(--bg-deep);
}

.export-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .export-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.export-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--bg-surface);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.export-item img {
    display: block;
    width: 100%;
    height: auto;
}

/* Specialization Cards */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.spec-card {
    background: var(--bg-surface);
    padding: 2.5rem;
    border-radius: var(--radius);
    border-top: 4px solid transparent;
    transition: var(--transition);
}

.spec-card:hover {
    border-top-color: var(--brand-gold);
}

.spec-card h3 {
    margin-bottom: 1rem;
    color: var(--brand-gold);
}

.spec-card p {
    color: var(--text-muted);
}

/* Vault / Privacy Section */
.vault {
    background-image: url('images/products/sample.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: var(--spacing-xl) 0;
}

.vault-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 3rem 2rem;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.vault-icon {
    display: block;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-section {
    background: var(--bg-surface);
}

.contact-flex {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
}

input,
textarea,
select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-surface);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    color: var(--text-main);
    font-family: inherit;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--brand-gold);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--brand-navy);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* Reveal Animations (Apple Style) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {

    .grid-2,
    .contact-flex {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .section-padding {
        padding: var(--spacing-lg) 0;
    }
}