/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #d4af37;
    --text-light: #666;
    --text-dark: #1a1a1a;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,0,0,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-title-wrapper {
    margin-bottom: 30px;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 32px);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background-color: var(--text-light);
    position: relative;
    animation: scrollDown 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-light);
    border-bottom: 2px solid var(--text-light);
    transform: rotate(45deg);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 250, 250, 0.8) 0%, rgba(245, 245, 245, 0.6) 100%);
    z-index: 0;
}

/* Section Styles */
.section {
    padding: 120px 40px;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 80px;
}

.section-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 300;
}

.section-title {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--text-dark);
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    max-width: 900px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-text .lead {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--text-dark);
}

/* Why Us Section */
.why-us {
    background-color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.feature-card {
    padding: 40px;
    background-color: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-number {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 20px;
    font-weight: 400;
}

.feature-title {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 400;
}

.feature-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Services Section */
.services {
    background-color: var(--white);
}

.services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-item:hover {
    padding-left: 20px;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 400;
}

.service-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Gallery Section */
.gallery {
    background-color: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
}


.gallery-item {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition);
    position: relative;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.15) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

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

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-placeholder:hover::before {
    opacity: 1;
}

.gallery-placeholder span {
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

/* CTA Section */
.cta {
    background-color: var(--white);
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 400;
}

.cta-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.cta-item {
    padding: 30px;
    border-left: 2px solid var(--accent-color);
    background-color: var(--secondary-color);
}

.cta-item p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.cta-item strong {
    color: var(--text-dark);
    font-weight: 500;
}

.cta-footer {
    text-align: center;
    font-size: 20px;
    font-style: italic;
    color: var(--text-light);
    font-weight: 300;
}

/* Contact Section */
.contact {
    background-color: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: center;
}

.contact-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-label {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 300;
}

.contact-value {
    font-size: 18px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-value:hover {
    color: var(--accent-color);
}

.contact-map-wrapper {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
    border-radius: 8px;
}

.btn-booking {
    display: inline-block;
    padding: 12px 10px;
    background-color: var(--text-dark);
    color: var(--white);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-weight: 400;
    width: fit-content;
    align-self: flex-start;
}

.btn-booking:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-submit {
    padding: 15px 40px;
    background-color: var(--text-dark);
    color: var(--white);
    border: none;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.btn-submit:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-weight: 300;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 40px 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .section {
        padding: 80px 20px;
    }
    
    .container {
        padding: 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map-wrapper iframe {
        height: 300px;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .cta-item {
        padding: 20px;
    }
    
    .contact-map-wrapper iframe {
        height: 300px;
    }
    
    .btn-booking {
        padding: 10px 25px;
        font-size: 13px;
    }
}

