:root {
    --bg-color: #feeeee;
    --text-color: #2d2d2d;
    --gold-accent: #b89645;
    --gold-accent-hover: #9e7f38;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

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

/* Header & Navigation */
header.solid-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 105px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background-color: var(--bg-color);
    border-bottom: 1px solid rgba(184, 150, 69, 0.3);
    z-index: 1000;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 50px;
    border-left: 1px solid rgba(184, 150, 69, 0.3);
    border-right: 1px solid rgba(184, 150, 69, 0.3);
}

.logo img {
    height: 75px;
    transition: var(--transition);
}

.nav-left, .nav-right {
    display: flex;
    height: 100%;
    align-items: center;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav-links {
    display: flex;
    list-style: none;
    height: 100%;
}

.nav-links li {
    display: flex;
}

.nav-links li a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 0 40px;
    border-left: 1px solid rgba(184, 150, 69, 0.3);
    position: relative;
    color: rgba(45, 45, 45, 0.7);
}

.nav-left .nav-links li:first-child a {
    border-left: none;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--gold-accent);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--gold-accent);
    transition: width 0.3s ease;
}

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

.social-icons {
    display: flex;
    align-items: center;
    height: 100%;
    border-left: 1px solid rgba(184, 150, 69, 0.3);
    padding: 0 30px;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--gold-accent);
    transition: var(--transition);
}

.mobile-overlay {
    display: none;
}

/* Hero Slider */
.hero {
    height: calc(100vh - 105px);
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 105px;
    padding: 0;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-media {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: -2;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 10s linear;
}

.slide.active .banner-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 45, 45, 0.4);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-quote {
    font-size: 3.5rem;
    max-width: 900px;
    line-height: 1.4;
    color: #fff;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 50px;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 50%;
    transition: var(--transition);
}

.slider-controls button:hover {
    background: var(--gold-accent);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background-color: var(--gold-accent);
}

/* Sections General */
section {
    padding: 100px 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--gold-accent);
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--gold-accent);
    margin: 20px auto 0;
}

/* About Us */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Projects */
.project-grid {
    display: flex;
    flex-direction: column;
    gap: 120px; /* Generous spacing between projects */
}

.project-card {
    display: flex;
    align-items: center;
    gap: 80px;
}

.project-card:nth-child(even) {
    flex-direction: row-reverse;
}

.project-image {
    flex: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 0; /* Removed margin since we are using flex gap */
    background: #fff;
    border-left: 3px solid var(--gold-accent);
    border-right: 3px solid var(--gold-accent);
}

.project-image img {
    width: 100%;
    height: 125%; /* Taller for parallax effect */
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
    transition: transform 0.6s ease, object-position 0.1s ease-out;
}

.project-card:hover .project-image img {
    transform: scale(1.03);
}

.project-info {
    flex: 1;
}

.project-info h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--gold-accent);
    font-family: var(--font-heading);
}

.project-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.founder-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--gold-accent);
}

.founder-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.contact-details {
    margin-top: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-details span {
    margin-right: 10px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.4);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(184, 150, 69, 0.2);
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    background: transparent;
    border-bottom: 1px solid var(--gold-accent);
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
    background: rgba(255,255,255,0.7);
    border-bottom-color: var(--text-color);
}

.submit-btn {
    background-color: var(--gold-accent);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.submit-btn:hover {
    background-color: var(--gold-accent-hover);
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(184, 150, 69, 0.3);
    font-size: 0.9rem;
}

/* Scroll Animations */
.section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.section-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-quote {
        font-size: 2.2rem;
    }
    .project-card, .project-card:nth-child(even) {
        flex-direction: column;
        gap: 40px;
    }
    .project-grid {
        gap: 80px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header.solid-header {
        display: flex;
        justify-content: flex-start;
        padding: 0;
    }
    .nav-left { display: none; }
    .nav-right .nav-links { display: none; }
    
    .logo {
        order: 1;
        padding: 0 15px 0 20px;
        border-left: none;
        border-right: 1px solid rgba(184, 150, 69, 0.3);
    }
    .logo img {
        height: 45px;
    }
    
    .nav-right {
        order: 2;
        margin-right: auto;
        height: 100%;
    }
    
    .social-icons {
        border-left: none;
        padding: 0 15px;
        gap: 12px;
    }
    
    .hamburger {
        display: block;
        order: 3;
        z-index: 2000;
        margin-right: 20px;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .mobile-overlay {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--bg-color);
        z-index: 1500;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav-links {
        list-style: none;
        text-align: center;
        padding: 0;
    }
    
    .mobile-nav-links li {
        margin: 25px 0;
    }
    
    .mobile-nav-links a {
        font-size: 2rem;
        color: var(--text-color);
        text-decoration: none;
        font-family: var(--font-heading);
    }
    
    .mobile-nav-links a:hover {
        color: var(--gold-accent);
    }
    .hero-quote {
        font-size: 1.8rem;
    }
    section {
        padding: 60px 0;
    }
}
