/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #B8956A;
    --secondary-color: #a07d56;
    --background-dark: #000000;
    --background-light: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-dark: #333333;
    --border-color: rgba(184, 149, 106, 0.2);
    --shadow-primary: rgba(184, 149, 106, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.5);
}

body {
    font-family: var(--font-body, 'Gotham Book', 'Gotham', sans-serif);
    font-weight: 325;
    background: var(--background-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography - Brand Font Hierarchy */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* H1: Main headlines - Cinzel serif for dramatic impact */
h1 {
    font-family: var(--font-headline, 'Cinzel', serif);
    font-size: var(--font-size-h1, 3.5rem);
    font-weight: var(--font-weight-medium, 500);
    letter-spacing: 0.02em;
}

/* H2: Company name & major headings - Gotham Book */
h2 {
    font-family: var(--font-brand, 'Gotham Book', 'Gotham', sans-serif);
    font-size: var(--font-size-h2, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* H3-H4: Subheadings & navigation - Gotham Book */
h3 {
    font-family: var(--font-brand, 'Gotham Book', 'Gotham', sans-serif);
    font-size: var(--font-size-h3, 1.75rem);
    font-weight: 400;
}

h4 {
    font-family: var(--font-brand, 'Gotham Book', 'Gotham', sans-serif);
    font-size: var(--font-size-h4, 1.25rem);
    font-weight: 400;
}

/* Body text - Gotham Book for readability */
p {
    font-family: var(--font-body, 'Gotham Book', 'Gotham', sans-serif);
    font-size: var(--font-size-body, 1rem);
    font-weight: 325;
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Taglines & straplines */
.tagline, .strapline {
    font-family: var(--font-body, 'Gotham Book', 'Gotham', sans-serif);
    font-weight: 325;
    font-style: italic;
    font-size: var(--font-size-small, 0.875rem);
    letter-spacing: 0.03em;
}

/* Mobile Typography Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }  /* 36px */
    h2 { font-size: 1.75rem; }  /* 28px */
    h3 { font-size: 1.375rem; } /* 22px */
    h4 { font-size: 1.125rem; } /* 18px */
    p { font-size: 0.9375rem; } /* 15px */
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    height: 45px;
    transition: all 0.3s ease;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(184, 149, 106, 0.5));
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-menu li {
    position: relative;
}

.nav-menu .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 220px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    border-bottom: none;
    transition: all 0.3s ease;
}

.dropdown a:hover {
    color: var(--primary-color);
    background: rgba(184, 149, 106, 0.1);
    padding-left: 2rem;
}

.dropdown a::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Sections */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);
    margin-top: 80px;
}

.hero::before,
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--text-white), var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px var(--shadow-primary)); }
    to { filter: drop-shadow(0 0 30px rgba(184, 149, 106, 0.6)); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--background-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.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: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-primary);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

/* Services */
.services-preview,
.services {
    background: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(184, 149, 106, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* About Preview */
.about-preview {
    padding: 6rem 0;
    background: var(--background-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Content Grids */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.text-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Contact Page Layout */
.contact-main {
    padding: 5rem 0;
    background: var(--background-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Forms */
.contact-form,
.newsletter-form {
    display: grid;
    gap: 1rem;
}

/* Form Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.form-group label {
    color: #cccccc;
    margin-bottom: 0.3rem;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Form Fields */
.form-group input,
.form-group textarea,
.form-group select {
    background: var(--color-charcoal, rgba(26, 26, 26, 0.95));
    border: 1px solid rgba(184, 149, 106, 0.2);
    border-radius: 6px;
    padding: 0.75rem;
    color: var(--color-white, #FFFFFF);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    height: 42px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold, #B8956A);
    background: var(--color-black, #000000);
    box-shadow: 0 0 0 2px rgba(184, 149, 106, 0.25);
}

.form-group textarea {
    min-height: 100px;
    height: auto;
    resize: vertical;
    padding: 0.75rem;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8956A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

/* Dropdown Option Styling */
.form-group select option {
    background: var(--color-charcoal, #1A1A1A);
    color: var(--color-white, #FFFFFF);
    padding: 0.75rem;
}

.form-group select option:checked {
    background: var(--color-gold, #B8956A) !important;
    color: var(--color-black, #000000) !important;
    font-weight: 500;
}

.form-group select option:hover {
    background: var(--color-gold, #B8956A);
    color: var(--color-black, #000000);
}

/* Webkit-specific dropdown styling */
.form-group select option:checked,
.form-group select option:active {
    background: linear-gradient(var(--color-gold, #B8956A), var(--color-gold, #B8956A));
    background-color: var(--color-gold, #B8956A) !important;
    color: var(--color-black, #000000) !important;
}

/* Firefox-specific dropdown styling */
@-moz-document url-prefix() {
    .form-group select option:checked {
        background-color: var(--color-gold, #B8956A) !important;
        color: var(--color-black, #000000) !important;
    }
}

/* Placeholder Styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Form Sections */
.form-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

/* Checkbox Group */
.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--color-gold, #B8956A);
    cursor: pointer;
}

/* Submit Button */
.contact-form .btn {
    margin-top: 1rem;
    width: 100%;
    justify-self: center;
}

/* Contact Info Styles */
.contact-info {
    padding-left: 2rem;
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #cccccc;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
    color: #cccccc;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-contact h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.social-contact .social-links a {
    color: #cccccc;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.social-contact .social-links a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(184, 149, 106, 0.05);
}

/* Footer */
footer {
    background: var(--background-dark);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive adjustments will be handled in responsive.css */