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

:root {
    --bg-deep: #0a0a0a;
    --bg-main: #121212;
    --bg-card: #1c1c1c;
    --accent: #d4af37;
    --accent-hover: #f1c40f;
    --text-bright: #ffffff;
    --text-body: #d1d1d1;
    --text-muted: #888888;
    --border: rgba(212, 175, 55, 0.2);
    --header-height: 80px;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --font-display: 'Cinzel', serif;
    --font-body: 'Spectral', serif;
}

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

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

h1, h2, h3, h4, .logo {
    font-family: var(--font-display);
    color: var(--text-bright);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

ul {
    list-style: none;
}

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

/* --- Header & Nav --- */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    flex: 1;
}

.nav-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex: 2;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--accent);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    color: var(--bg-deep);
}

.btn:hover::before {
    left: 0;
}

nav .btn {
    flex: 1;
    max-width: 180px;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-body);
    font-style: italic;
}

/* --- Section Layouts --- */
.section {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--accent);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 50px 30px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    border-color: var(--border);
    transform: translateY(-10px);
    background: #252525;
}

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

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

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

/* --- Detail & About Sections --- */
.detail-section, .about {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.detail-section:nth-of-type(even), .about:nth-of-type(even) {
    flex-direction: row-reverse;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    z-index: -1;
}

.about-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(0.5);
    transition: var(--transition);
}

.about-img:hover img {
    filter: grayscale(0);
}

.about-content {
    flex: 1;
}

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

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

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

.gallery-overlay span {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    border: 1px solid var(--accent);
    padding: 10px 20px;
}

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

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

/* --- Process Section --- */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.3;
}

.step-content h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-muted);
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #181818;
    padding: 40px;
    border-left: 3px solid var(--accent);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 0.9rem;
}

/* --- Contact Section --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.info-item i {
    color: var(--accent);
    font-size: 1.2rem;
    width: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input, .contact-form textarea {
    background: #181818;
    border: 1px solid #333;
    padding: 15px;
    color: var(--text-bright);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--accent);
}

/* --- Footer --- */
footer {
    background: #050505;
    padding: 80px 40px 40px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--accent);
}

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

.social-links a {
    font-size: 1.5rem;
    color: var(--text-muted);
}

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

footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
    nav {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none; /* Simplification for desktop-to-mobile transition in this snippet */
    }
    
    .detail-section, .about, .process-grid, .contact-container {
        flex-direction: column !important;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 20px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-img img {
        height: 350px;
    }
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}
