/* === CSS Reset & Custom Properties === */
:root {
    --color-bg: #FAF9F6; /* Premium off-white */
    --color-text: #1C1C1C; /* Soft black */
    --color-text-light: #5A5A5A;
    --color-accent: #A68A64; /* Muted gold/beige */
    --color-border: #E0DCD3;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    display: block;
}

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

/* === Typography === */
h1, h2, h3, .logo, .footer-logo {
    font-family: var(--font-heading);
    font-weight: 400;
}

/* === Animations === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    background: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: padding var(--transition-fast), border-bottom var(--transition-fast);
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 3rem;
}

.nav a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-text);
    transition: width var(--transition-fast);
}

.nav a:hover::after {
    width: 100%;
}

.btn-enquire {
    background: transparent;
    border: 1px solid var(--color-text);
    padding: 0.75rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.btn-enquire:hover, .btn-outline:hover {
    background: var(--color-text);
    color: var(--color-bg);
}

/* === Main Layout === */
main {
    padding-top: 100px;
}

/* === Hero Section === */
.hero {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-image-wrapper {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    max-width: 800px;
}

.sub-title {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 2px;
}

.main-title {
    font-size: 4rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* === About Section === */
.about {
    padding: 8rem 4rem;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 900px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.section-title.center {
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-text);
    padding: 1rem 3rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

/* === Services Section === */
.services {
    padding: 8rem 4rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 8rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-image {
    flex: 1;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    padding: 2rem;
}

.service-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.service-desc {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* === Gallery Section === */
.gallery {
    padding: 8rem 4rem;
    background-color: #fff;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-subtitle {
    color: var(--color-text-light);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 4rem auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.gallery-footer {
    text-align: center;
}

.view-all {
    display: inline-block;
    border-bottom: 1px solid var(--color-text);
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.view-all:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

/* === Footer === */
.footer {
    background-color: #111;
    color: #fff;
    padding: 6rem 4rem 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-accent);
}

.footer-info {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #aaa;
}

.footer-info strong {
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-logo {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 2rem;
}

.footer-socials a {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
}

.footer-socials a:hover {
    border-bottom-color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: #aaa;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #fff;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .service-item, .service-item.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1.5rem 2rem;
    }
    
    .nav {
        display: none; /* Add a hamburger menu for mobile in a real app */
    }
    
    .hero {
        padding: 2rem;
    }
    
    .hero-image-wrapper {
        height: 50vh;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 400px;
    }
}
