/* 1. SETUP & VARIABLES */
:root {
    --true-black: #000000;
    --dark-grey: #0a0a0a;
    --gold-metallic: linear-gradient(45deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --gold-solid: #D4AF37; 
    --white-soft: #f4f4f4;
    --gray: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--true-black);
    color: var(--white-soft);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between; /* Menu on left, logo on right */
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #000000;
}

/* Hide hamburger menu */
.hamburger {
    display: none !important;
}

/* Show nav overlay on the right */
.nav-overlay {
    display: block;
    position: static;
}

/* Menu on the Left */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    order: 1; /* Ensure menu comes first */
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d4af37;
}

/* Logo on the Right */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 2px;
    text-align: right;
    order: 2; /* Ensure logo comes second */
}

.logo img {
    height: 2.0rem;
    vertical-align: middle;
    margin-right: 5px;
}

.logo span {
    color: #d4af37;
    font-weight: 300;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        /* Keeps logo and menu on the same level or stacked neatly */
        flex-direction: column; 
        gap: 10px;
        padding: 10px 2%;
    }

    .nav-links {
        /* CHANGE: This keeps the links side-by-side instead of vertical */
        flex-direction: row; 
        justify-content: center;
        flex-wrap: nowrap; /* Prevents wrapping to a second line */
        gap: 12px; /* Reduced gap to save space */
        width: 100%;
    }

    .nav-links a {
        /* CHANGE: Smaller font size to fit the width of a phone */
        font-size: 0.7rem; 
        letter-spacing: 0.5px; /* Tighter letters for mobile */
    }

    .logo {
        text-align: center;
        font-size: 0.9rem; /* Smaller logo so it doesn't crowd the screen */
        order: 1; /* Puts logo on top */
    }

    .nav-links {
        order: 2; /* Puts links directly under logo */
    }
}

/* 3. HERO SECTION */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1516455590571-18256e5bb9ff?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white-soft);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.subtitle {
    color: var(--gold-solid);
    letter-spacing: 5px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.tagline {
    color: var(--gold-solid);
    font-size: clamp(1rem, 3vw, 1.4rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 30px;
}

.gold-line {
    height: 2px;
    width: 150px;
    background: var(--gold-metallic);
    margin: 20px auto;
}

/* 4. BUTTONS */
.hero-btns {
    margin-top: 20px;
}

.btn-primary {
    background: var(--gold-metallic);
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin: 10px;
    transition: 0.3s ease;
    border-radius: 2px;
}

.btn-outline {
    border: 1px solid var(--gold-solid);
    color: var(--gold-solid);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin: 10px;
    transition: 0.3s ease;
    border-radius: 2px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* 5. SERVICES SECTION */
.services {
    padding: 100px 10%;
    background-color: var(--true-black);
    text-align: center;
}

.services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--dark-grey);
    padding: 50px 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.service-card:hover {
    border-color: var(--gold-solid);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(191, 149, 63, 0.05);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gold-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white-soft);
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* 6. RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* 1. NARROWER HERO - To feel more "Tall" */
.contact-hero {
    padding-top: 180px; 
    padding-bottom: 80px;
    text-align: center;
    background-color: var(--true-black);
    max-width: 800px; /* Limits the text width */
    margin: 0 auto;
}

/* 2. THE MAIN CONTACT LAYOUT */
.contact-page-content {
    padding-bottom: 120px;
    background-color: var(--true-black);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; /* Bigger gap between info and form */
    margin-top: 50px;
    text-align: left;
    max-width: 1000px; /* THIS IS KEY: Limits the width so it's not too wide */
    margin-left: auto;
    margin-right: auto;
}

/* 3. TALLER INPUTS */
.form-group {
    margin-bottom: 30px; /* More vertical space between rows */
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 22px; /* Thicker, taller boxes */
    background: #0d0d0d;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--white-soft);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    border-radius: 0; /* Sharp corners look more professional/London-style */
    outline: none;
    transition: 0.4s ease;
}

/* 4. TALLER TEXT AREA */
.contact-form textarea {
    min-height: 250px; /* Forces the box to be much longer */
    resize: none;
}

/* 5. TALLER BUTTON */
.contact-form button {
    padding: 22px;
    font-size: 1.1rem;
    letter-spacing: 3px;
    cursor: pointer;
}

/* MOBILE: Keep it centered and narrow */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        max-width: 500px; /* Very narrow on mobile for a long scroll */
        padding: 0 20px;
    }
}
/* CONTACT PAGE SPECIFIC STYLES */

/* 1. The Container - Limits width to prevent that "too wide" look */
.container-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 2. Header Style */
.contact-header {
    padding: 180px 0 60px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), 
                url('https://images.unsplash.com/photo-1621816773446-ce89b07455fc?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
}

/* 3. Details Stacking */
.contact-details-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.detail-box {
    background: #0a0a0a;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.detail-box i {
    color: var(--gold-solid);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.detail-box p {
    font-size: 0.9rem;
    color: var(--white-soft);
}

/* 4. Form Styling - Taller and Richer */
.contact-main {
    padding: 60px 0;
    background-color: var(--true-black);
}

.form-container {
    background: #050505;
    padding: 50px;
    border-top: 3px solid var(--gold-solid);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 20px;
    margin-bottom: 25px;
    background: #111;
    border: 1px solid #222;
    color: white;
    font-size: 1rem;
    outline: none;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: var(--gold-solid);
}

/* 5. FAQ Section - Fills the empty space at the bottom */
.faq {
    padding: 100px 0;
    background: #050505;
    text-align: center;
}

.faq h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-solid);
    margin-bottom: 40px;
    font-size: 2rem;
}

.faq-item {
    margin-bottom: 40px;
    text-align: left;
}

.faq-item h4 {
    color: var(--white-soft);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 600px) {
    .contact-details-top {
        grid-template-columns: 1fr;
    }
    .form-container {
        padding: 30px 20px;
    }
}

/* Detailed Services Page */
.services-detailed {
    padding: 80px 0;
    background-color: var(--true-black);
}

.detailed-service-item {
    background: #050505;
    padding: 50px;
    margin-bottom: 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: 0.3s;
}

.detailed-service-item:hover {
    border-color: var(--gold-solid);
}

.detailed-service-item h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-solid);
    margin-top: 15px;
    font-size: 2rem;
}

.service-list {
    list-style: none;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-list li {
    color: var(--white-soft);
    font-size: 0.9rem;
}

.service-list i {
    color: var(--gold-solid);
    margin-right: 10px;
    font-size: 0.8rem;
}

.service-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    border-top: 1px solid #1a1a1a;
}

:root {
    --gold: #D4AF37;
    --dark-bg: #0a0a0a;
    --card-bg: #141414;
    --text-gray: #b0b0b0;
}

body {
    background-color: var(--dark-bg);
    color: white;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

nav {
    padding: 20px;
    background: #000;
}

.nav-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
}

.gallery-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.subtitle {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

h2 {
    font-size: 2.5rem;
    margin: 10px 0;
}

.gold-line {
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-card {
    background: var(--card-bg);
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: 0.3s ease-in-out;
}

.gallery-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
}

.image-container img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* This makes sure the photos don't look stretched */
    border-bottom: 2px solid var(--gold);
}

.gallery-card h3 {
    color: var(--gold);
    margin-top: 20px;
}

.gallery-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-outline-small {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-outline-small:hover {
    background: var(--gold);
    color: black;
}

.btn-outline-small {
    cursor: pointer; 
    user-select: none; 
}

/* --- Silicone Render Project Page Styles --- */

/* Header styling for the project page */
.project-header {
    text-align: center;
    padding: 80px 20px 40px;
    background-color: #0f0f0f;
}

.project-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white-soft);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Container for the main hero image (sr1.jpg) */
.main-project-image {
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 0 20px;
    text-align: center;
}

.main-project-image img {
    max-width: 800px;
    width: 100%;
    height: auto;
    border: 1px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.image-label {
    display: inline-block;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 5px 15px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* The grid for sr2.jpg through sr10.jpg */
.section-title {
    text-align: center;
    color: white;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item {
    overflow: hidden;
    border: 1px solid #222;
    height: 250px; /* Keeps all grid images the same height */
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

/* Hover effect for the process photos */
.grid-item img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
    border: 2px solid var(--gold-solid);
}

/* Video Grid Styles */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    overflow: hidden;
    border: 1px solid #222;
    height: 250px; /* Keeps all videos the same height */
    background: #0a0a0a;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Banner at the bottom of the page */
.cta-banner {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('sr1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 50px;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Ensure the button/link works in the banner */
.btn-primary {
    display: inline-block;
    background-color: var(--gold);
    color: black;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: white;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px; /* Adjust height as needed */
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.service-card:hover .service-overlay {
    transform: translateY(0);
}

.service-card:hover img {
    transform: scale(1.1);
}

.btn-service {
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 15px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

/* Video Gallery Styling */
.video-container {
    width: 100%;
    height: 100%; /* Adapts to your gallery-card height */
    min-height: 250px; 
    background: #000;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #d4af37; /* Optional: Gold accent under video */
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video fills the card area nicely */
}

/* Optional: Subtle glow when hovering over videos */
.gallery-card:hover .video-container {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transition: 0.3s ease;
}



/* Navigation Container */
.navbar {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #000000;
}

/* Menu Links (Left Side) */
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d4af37;
}

/* Logo (Right Side) */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 1px;
    text-align: right;
}

.logo span {
    color: #d4af37;
    font-weight: 300;
}


