@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600&family=Playfair+Display:wght@200;300;400;500&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.8;
    color: #2d3748;
    background-color: #ffffff;
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.app-container {
    position: relative;
    scroll-snap-type: y mandatory;
    height: 100vh;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

/* Scroll snap for sections */
.hero,
.about,
.services,
.contact {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.preloader-content {
    text-align: center;
}

.logo-animation h1 {
    font-size: 3rem;
    color: #2d3748;
    margin-bottom: 24px;
    opacity: 0;
    animation: logoFadeIn 1s ease-out 0.3s forwards;
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    letter-spacing: -0.02em;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: #a0aec0;
    border-radius: 50%;
    animation: dotBounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

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

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Floating Booking Button */
.floating-booking-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #2d3748;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    display: none;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(45, 55, 72, 0.15);
    cursor: pointer;
    z-index: 1000;
    font-weight: 400;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    animation: floatIn 0.5s ease-out;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.025em;
}

.floating-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 55, 72, 0.2);
    background: #1a202c;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
h1 {
    font-size: 4.5rem;
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-family: 'Inter', sans-serif;
    color: #1a202c;
}

h2 {
    font-size: 3.5rem;
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
    color: #1a202c;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a202c;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #4a5568;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: -0.005em;
}

/* Buttons */
.btn-primary {
    background: #2d3748;
    color: #ffffff;
    border: none;
    padding: 18px 36px;
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(45, 55, 72, 0.1);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(45, 55, 72, 0.15);
    background: #1a202c;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fafafa;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 32px;
    color: #1a202c;
}

.hero-logo-container {
    margin-bottom: 0px;
}

.hero-logo {
    width: 320px;
    height: auto;
    margin-bottom: 0px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.05));
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 60px;
    color: #4a5568;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    font-weight: 300;
    letter-spacing: -0.005em;
}

.hero-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid #a0aec0;
    border-bottom: 2px solid #a0aec0;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* About Section */
.about {
    padding: 120px 0;
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    width: 100%;
}

.about-text h2 {
    margin-bottom: 50px;
}

.about-paragraph {
    margin-bottom: 30px;
    font-size: 1.3rem;
    line-height: 1.9;
    color: #4a5568;
    font-weight: 300;
}

.about-image-container {
    position: relative;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 0;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #2d3748 0%, #12161c 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header h2 {
    position: relative;
    margin-bottom: 30px;
    color: #ffffff;
}

.services-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: -0.005em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 80px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    position: relative;
    border: 1px solid #f1f5f9;
}

.service-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.service-icon {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon svg {
    width: 56px;
    height: 56px;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #2d3748;
    background: #f8fafc;
}

.service-card h3 {
    margin-bottom: 20px;
    color: #1a202c;
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.service-card p {
    color: #4a5568;
    line-height: 1.8;
    margin-top: 0;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 80px;
    width: 100%;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.contact-icon {
    color: #2d3748;
    flex-shrink: 0;
    margin-top: 0;
}

.contact-details h3 {
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
}

.contact-address {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-address:hover {
    color: #1a202c;
}

.map-link {
    color: #2d3748;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.025em;
}

.map-link:hover {
    color: #1a202c;
}

.phone-link {
    color: #2d3748;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    letter-spacing: -0.005em;
}

.phone-link:hover {
    color: #1a202c;
}

.booking-section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.booking-card {
    background: #f8fafc;
    padding: 60px 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 1280px;
}

.booking-card h3 {
    margin-bottom: 30px;
    color: #1a202c;
    font-weight: 300;
    font-size: 2.2rem;
    letter-spacing: -0.01em;
}

.booking-text {
    margin-bottom: 40px;
    line-height: 1.8;
    color: #4a5568;
    font-size: 1.2rem;
    font-weight: 300;
}

.booking-footer {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 300;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #1a202c;
    color: #ffffff;
    padding: 48px 0;
    text-align: center;
    scroll-snap-align: start;
}

.footer-copyright {
    margin-bottom: 12px;
    font-size: 0.9rem;
    opacity: 0.7;
    color: #a0aec0;
    font-weight: 300;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.6;
    color: #a0aec0;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Footer social icons */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.follow-text {
    color: #ffffff;
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-link svg {
    width: 28px;
    height: 28px;
    display: block;
    color: #ffffff;
    fill: currentColor;
    transition: transform 0.15s ease, opacity 0.15s ease;
    opacity: 0.95;
}

.social-link:hover svg {
    transform: translateY(-4px) scale(1.02);
    opacity: 1;
}

/* Reveal animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero {
        height: 100vh;
    }
    
    .hero-content {
        padding: 0 24px;
    }
    
    .hero-logo {
        width: 240px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .contact-item {
        flex-direction: row;
        text-align: left;
        gap: 16px;
    }
    
    .floating-booking-btn {
        bottom: 24px;
        right: 24px;
        padding: 14px 20px;
        font-size: 0.8rem;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .services {
        padding: 80px 0;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .booking-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 200px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
    
    .booking-card {
        padding: 40px 30px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .app-container {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #2d3748;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .floating-booking-btn,
    .scroll-indicator {
        display: none !important;
    }
    
    .hero {
        height: auto;
        min-height: 400px;
    }
    
    .about,
    .services,
    .contact {
        padding: 48px 0;
    }
}