/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --primary-color: #c0a062; /* Copper/Gold */
    --primary-hover: #d4b475;
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --light-text: #f4f4f4;
    --gray-text: #a0a0a0;
    --white: #ffffff;
    --nav-height: 80px;
    --transition: all 0.3s ease-in-out;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gray { color: var(--gray-text); }
.bg-dark { background-color: var(--dark-bg); color: var(--white); }
.bg-light { background-color: #f9f9f9; }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

/* =========================================
   2. NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-color);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--light-text);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-contact {
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 2px;
    color: var(--primary-color) !important;
}

.btn-contact:hover {
    background-color: var(--primary-color);
    color: var(--white) !important;
}

.btn-contact::after { display: none; }

.hamburger {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero-section {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1579532889246-8152e00e84b7?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

/* Dark Overlay for Hero */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.eyebrow {
    display: block;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-down span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

/* =========================================
   4. MISSION STRIP
   ========================================= */
.mission-strip {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    position: relative;
}

.mission-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 2rem;
    opacity: 0.5;
    margin-bottom: 20px;
}

.mission-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 20px;
}

.author {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* =========================================
   5. INTRO / STATS
   ========================================= */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text p {
    margin-bottom: 20px;
    color: #555;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-card {
    background: #f4f4f4;
    padding: 30px;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-card h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

/* =========================================
   6. ABOUT / PROCESS
   ========================================= */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-card {
    background: var(--dark-card);
    padding: 40px 30px;
    position: relative;
    border: 1px solid #333;
    transition: var(--transition);
}

.process-card:hover {
    border-color: var(--primary-color);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.process-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

/* =========================================
   7. OPERATIONS
   ========================================= */
.operations-section {
    background: #fff;
}

.operation-block {
    padding: 100px 0;
}

.op-header {
    margin-bottom: 50px;
}

.op-tag {
    background: var(--dark-bg);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.op-header h2 {
    font-size: 3rem;
    color: var(--dark-bg);
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin-top: 20px;
}

.op-content {
    align-items: flex-start;
}

.op-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.op-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 20px 20px 0px rgba(192, 160, 98, 0.2); /* Offset shadow */
}

/* Custom List Styles */
.check-list, .milestone-list ul {
    margin: 20px 0;
}

.check-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.milestone-list {
    background: #f4f4f4;
    padding: 25px;
    border-left: 3px solid var(--primary-color);
    margin-top: 30px;
}

.milestone-list h4 {
    margin-bottom: 15px;
}

.milestone-list ul li {
    margin-bottom: 8px;
    list-style-type: disc;
    margin-left: 20px;
    color: #555;
}

/* =========================================
   8. TEAM SECTION
   ========================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.team-img {
    height: 350px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-info .role {
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.team-info p {
    font-size: 0.9rem;
    color: #666;
}

/* =========================================
   9. GALLERY
   ========================================= */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #333;
    color: var(--gray-text);
    padding: 8px 25px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(192, 160, 98, 0.9); /* Gold overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--dark-bg);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    padding: 0 20px;
    text-align: center;
}

/* =========================================
   10. CONTACT SECTION
   ========================================= */
.contact-wrapper {
    display: flex;
    box-shadow: 0 0 50px rgba(0,0,0,0.1);
}

.contact-info {
    flex: 1;
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--gray-text);
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-form-box {
    flex: 1.5;
    background: var(--white);
    padding: 60px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background: #fff;
}

.full-width {
    width: 100%;
}

/* =========================================
   11. FOOTER
   ========================================= */
footer {
    background: #0a0a0a;
    color: #fff;
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid #222;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-logo p {
    color: #777;
    max-width: 300px;
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #aaa;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #222;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
}

.social-icons a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    color: #555;
    font-size: 0.9rem;
}

/* =========================================
   12. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .intro-stats { margin-top: 0; }
    .process-grid, .team-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .op-content.grid-2 { display: flex; flex-direction: column; }
    .order-mobile-1 { order: 2; }
    .order-mobile-2 { order: 1; margin-bottom: 30px; }
    .contact-wrapper { flex-direction: column; }
    .footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .btn-contact { display: none; }
    .hamburger { display: block; }
    .hero-content h1 { font-size: 2.2rem; }
    .process-grid, .team-grid, .gallery-grid { grid-template-columns: 1fr; }
    .stat-card { padding: 20px; }
}

/* =========================================
   14. DEVELOPER CREDIT
   ========================================= */
.developer-credit {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #555;
}

.developer-credit a {
    color: var(--primary-color); /* Uses the Gold/Copper color */
    font-weight: 600;
    margin-left: 5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.developer-credit a:hover {
    color: #fff; /* Turns white on hover */
    text-shadow: 0 0 5px rgba(192, 160, 98, 0.5);
}

/* =========================================
   LOGO STYLING UPDATES (Add to style.css)
   ========================================= */

/* Navbar Logo */
.nav-logo {
    height: 60px; /* Adjust based on your logo aspect ratio */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

/* Shrink logo on scroll */
.navbar.scrolled .nav-logo {
    height: 45px;
}

/* Hero Center Logo */
.hero-logo-wrapper {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.hero-logo-img {
    max-width: 300px; /* Large and dominant */
    width: 100%;
    height: auto;
    margin: 0 auto; /* Center it */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); /* Adds depth against bg */
}

/* Animation for Hero Logo */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments for Logo */
@media (max-width: 768px) {
    .hero-logo-img {
        max-width: 200px;
    }
    .nav-logo {
        height: 50px;
    }
}