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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: #000000;
    background-color: #F6F7F8;
    position: relative;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    display: block;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #F6F7F8 0%, #169C3 20%, #347A9A 80%, #F6F7F8 100%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.animated-bg::before,
.animated-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
}

.animated-bg::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #169C3 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: float 20s infinite ease-in-out;
}

.animated-bg::after {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #347A9A 0%, transparent 70%);
    bottom: -250px;
    right: -250px;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(80px, 60px) scale(1.15);
    }
    50% {
        transform: translate(0, 120px) scale(1);
    }
    75% {
        transform: translate(-80px, 60px) scale(0.85);
    }
}

/* Floating particles */
.particle {
    position: fixed;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #d4a574, #c9a882);
    border-radius: 50%;
    opacity: 0.4;
    z-index: -1;
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

.particle:nth-child(2) {
    top: 15%;
    left: 10%;
    animation: particle-float 18s infinite ease-in-out;
}

.particle:nth-child(3) {
    top: 60%;
    left: 85%;
    width: 6px;
    height: 6px;
    animation: particle-float 22s infinite ease-in-out 3s;
}

.particle:nth-child(4) {
    top: 35%;
    left: 25%;
    width: 10px;
    height: 10px;
    animation: particle-float 20s infinite ease-in-out 6s;
}

.particle:nth-child(5) {
    top: 75%;
    left: 60%;
    width: 7px;
    height: 7px;
    animation: particle-float 25s infinite ease-in-out 9s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translate(100px, -80px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(50px, -150px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translate(-50px, -80px) rotate(270deg);
        opacity: 0.6;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: transparent;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
    animation: headerPulse 8s ease-in-out infinite;
}

@keyframes headerPulse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-10%, -10%) scale(1.2);
        opacity: 0.8;
    }
}

.logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: logoFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(212, 165, 116, 0.2));
}

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

/* Hero Section */
.hero {
    background: transparent;
    padding: 50px 0 40px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
    animation: fadeInUp 1s ease-out;
}

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

.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #FF3366;
    margin-bottom: 25px;
    font-weight: 400;
}

.intro {
    font-size: 1.05rem;
    color: #000000;
    max-width: 850px;
    margin: 0 auto 25px;
    line-height: 1.8;
    font-weight: 300;
}

.location-note {
    font-size: 0.95rem;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Gallery Section */
.gallery {
    padding: 30px 0 40px;
    position: relative;
    z-index: 10;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(52, 122, 154, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #347A9A;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 51, 102, 0.4);
    border-color: #FF3366;
}

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

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

/* Features Section */
.features {
    background: rgba(249, 249, 249, 0.6);
    padding: 60px 0 70px;
    position: relative;
    z-index: 10;
}

.features h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #000000;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #347A9A;
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
    font-weight: 300;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(246,247,248,0.95) 100%);
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(52, 122, 154, 0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(52, 122, 154, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(22, 156, 195, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(255, 51, 102, 0.25);
    border-color: rgba(255, 51, 102, 0.4);
}

.icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.icon i {
    font-size: 3.5rem;
    color: #347A9A;
    transition: all 0.3s ease;
    font-weight: 300;
}

.feature-card:hover .icon i {
    transform: scale(1.15);
    color: #FF3366;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #347A9A;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
}

.divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #169C3, #347A9A, #FF3366);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.feature-card p {
    color: #000000;
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Booking Section */
.booking {
    background: rgba(255, 255, 255, 0.5);
    padding: 70px 0 80px;
    position: relative;
    z-index: 10;
}

.booking h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #000000;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.booking-intro {
    text-align: center;
    color: #347A9A;
    font-size: 1.05rem;
    margin-bottom: 40px;
    font-weight: 300;
    font-style: italic;
}

.calendly-inline-widget {
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(52, 122, 154, 0.2);
    border: 1px solid rgba(52, 122, 154, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #000000 0%, #347A9A 100%);
    color: #F6F7F8;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 -2px 15px rgba(52, 122, 154, 0.2);
    position: relative;
    z-index: 10;
}

footer p {
    margin: 5px 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .intro {
        font-size: 1rem;
    }
    
    .features h2,
    .booking h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .logo {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .features,
    .booking {
        padding: 40px 0;
    }
}

