/* style.css - Pure Harvest Exports (TEXT LOGO VERSION) */

/* 1. TYPOGRAPHY & VARIABLES */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --navy-deep: #0b1c3c;
    --navy-light: #162a52;
    --gold-main: #d4af37;
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --white: #ffffff;
    --text-gray: #e0e0e0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--navy-deep);
    color: var(--white);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 2. NAVIGATION (TEXT LOGO) */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(11, 28, 60, 0.95);
    border-bottom: 2px solid var(--gold-main);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

/* THE LUXURY TEXT LOGO STYLE */
.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Makes text look like gold metal */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--gold-main);
}

/* 3. HERO SECTION */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(11, 28, 60, 0.85), rgba(11, 28, 60, 0.7)), url('https://images.unsplash.com/photo-1618512496248-a07fe83aa8cb?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    max-width: 900px;
    line-height: 1.2;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin-bottom: 40px;
}

.btn-gold {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--navy-deep);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

/* 4. SECTIONS & CARDS */
.section { padding: 80px 5%; }

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--gold-main);
    display: inline-block;
    padding-bottom: 10px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.card:hover {
    border-color: var(--gold-main);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.spec-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.spec-list li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
}

/* 5. CONTACT FORM & SPLIT LAYOUT */
.split-container {
    display: flex;
    flex-wrap: wrap;
    background: var(--navy-light);
    border: 1px solid var(--gold-main);
    border-radius: 10px;
    overflow: hidden;
}

.contact-left {
    flex: 1;
    padding: 50px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.contact-right {
    flex: 1;
    padding: 50px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-family: 'Montserrat', sans-serif;
    border-radius: 5px;
}

input:focus, textarea:focus {
    border-color: var(--gold-main);
    outline: none;
    background: rgba(255,255,255,0.1);
}

/* TRUST ICONS */
.trust-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.badge {
    border: 1px solid var(--gold-main);
    color: var(--gold-main);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid var(--gold-main);
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* --- MOBILE RESPONSIVENESS FIX --- */
@media (max-width: 768px) {

    /* 1. Fix the Header & Navigation */
    nav {
        flex-direction: column;
        padding: 15px;
    }

    .logo {
        margin-bottom: 15px;
        text-align: center;
        font-size: 1.5rem; /* Smaller Logo */
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-links a {
        margin: 0;
        font-size: 0.8rem; /* Smaller Links */
        border: 1px solid rgba(212, 175, 55, 0.3); /* Gold border for touch targets */
        padding: 8px 12px;
        border-radius: 4px;
    }

    /* 2. Fix the Hero Section (Big Text) */
    .hero {
        height: auto; /* Allow it to grow */
        min-height: 80vh;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2rem; /* Shrink from 3.5rem to 2rem */
    }

    /* 3. Fix the Contact Form Split */
    .split-container, .contact-container, .split-layout {
        flex-direction: column; /* Stack top-to-bottom */
    }

    .contact-left, .contact-right, .split-content, .split-image {
        width: 100%; /* Full width */
        padding: 30px 20px; /* Less padding */
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* 4. Fix Grid Systems */
    .grid-3, .product-grid {
        grid-template-columns: 1fr; /* 1 Column only */
    }

    /* 5. Fix Padding generally */
    .section, .container {
        width: 95%; /* Use more screen space */
        padding-left: 10px;
        padding-right: 10px;
    }
}