@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --primary: #c5a059;
    --primary-light: #e8d8c3;
    --secondary: #2d3436;
    --accent: #f4e7e7;
    --text: #4a4a4a;
    --text-light: #888888;
    --bg: #fffcf9;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3 {
    font-family: var(--heading-font);
    color: var(--secondary);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 100px 10%;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 5%;
    }
}

/* Header & Nav */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(255, 252, 249, 0.95);
    height: 70px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary);
}

#header nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

#header nav ul {
    display: flex;
    gap: 2.5rem;
}

#header nav ul li a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
}

#header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition);
}

#header nav ul li a:hover::after {
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--secondary);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
}

.btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
}

@media (max-width: 1024px) {
    #header nav {
        display: none; /* Simplification for mobile without hamburger logic */
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    gap: 5%;
    background: linear-gradient(135deg, #fffcf9 0%, #f4e7e7 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

#hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
}

#hero-p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-btns {
    display: flex;
    align-items: center;
}

.hero-image {
    flex: 1;
    height: 80%;
    object-fit: cover;
    border-radius: 300px 300px 0 0;
    box-shadow: 30px 30px 0 var(--primary-light);
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column-reverse;
        padding-top: 120px;
        height: auto;
        text-align: center;
    }
    .hero-image {
        width: 100%;
        height: 400px;
        margin-bottom: 50px;
    }
    .hero-btns {
        justify-content: center;
    }
    #hero-p {
        margin: 0 auto 40px;
    }
}

/* Services Section */
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1rem;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Galleria Section */
.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-info h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        height: 350px;
    }
}

/* About & Detail Sections */
.about, .detail-section {
    display: flex;
    align-items: center;
    gap: 8%;
}

.about-image, .detail-image {
    flex: 1;
    position: relative;
}

.about-image img, .detail-image img {
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text);
}

.detail-section {
    flex-direction: row-reverse;
}

@media (max-width: 992px) {
    .about, .detail-section {
        flex-direction: column;
        gap: 50px;
    }
}

/* Process Section */
.process {
    background-color: var(--accent);
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
}

.process-image-full {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-top: 50px;
    box-shadow: var(--shadow);
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-item p {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 30px;
}

.testimonial-author {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

/* Contact Section */
.contact {
    display: flex;
    gap: 10%;
    background: var(--white);
    padding: 80px;
    box-shadow: var(--shadow);
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-details i {
    color: var(--primary);
    width: 20px;
}

.contact-form {
    flex: 1.2;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    background: #fdfdfd;
    font-family: var(--body-font);
    transition: var(--transition);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

@media (max-width: 992px) {
    .contact {
        flex-direction: column;
        padding: 40px 20px;
        gap: 60px;
    }
}

/* Footer */
footer {
    padding: 80px 10% 40px;
    background: var(--secondary);
    color: var(--white);
    text-align: center;
}

.footer-logo {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

footer p {
    color: var(--accent);
    opacity: 0.8;
}

.social-links {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    font-size: 0.8rem;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
}

/* Animations */
.reveal {
    opacity: 1; /* Visible by default as per instructions */
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Enhancement for reveal when active */
.reveal.active {
    animation: revealEnhanced 1s forwards;
}

@keyframes revealEnhanced {
    from {
        opacity: 0.5;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger delay for grid items */
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }

.step:nth-child(2) { transition-delay: 0.1s; }
.step:nth-child(3) { transition-delay: 0.2s; }
