/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --orange-50: #fff7ed;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero {
    background: url('bg-atlantic.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3em;
    color: #f0c75e;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(240, 199, 94, 0.6);
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.hero-btn {
    background: #f0c75e;
    color: #000;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s;
    font-weight: bold;
}

.hero-btn:hover {
    background: #e6b64d;
}

/* Buttons */
.btn-primary {
    background-color: var(--orange-600);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--orange-700);
}

/* About Section */
.about {
    padding: 60px 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 100%), 
                url('https://images.unsplash.com/photo-1591870408955-9f5f749d396c?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
   
    margin: 0px 0;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
}

.about h2 {
    color: #f0c75e;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(240, 199, 94, 0.6);
}

.about p {
    max-width: 900px;
    margin: 0 auto 20px auto;
    line-height: 1.8;
    color: #ddd;
    font-size: 1.1em;
    text-align: center;
}

/* GEO */
.geo-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('geo-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
 
    margin-top: 00px;
}

.geo-section h2 {
    color: #f0c75e;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.geo-section p {
    max-width: 900px;
    margin: auto;
    line-height: 1.8;
    font-size: 1.1em;
}
.geo-section a {
    color: #f0c75e;
}


.islands-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1628413283166-a7666966d26b?q=80&w=2071&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    padding: 60px 20px;
    color: #fff;
    margin-top: 0px;
}

.islands-section h2 {
    color: #f0c75e;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
}

.islands-section p {
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.7;
    font-size: 1.1em;
    text-align: justify;
}

/* Events Section */
.events {
    padding: 5rem 0;
    background-image: url('https://images.unsplash.com/photo-1619162600582-1c24c605a5fa?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-attachment: fixed;
    background-size: cover;
    color: white;
}

.events h2 {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: #333;
}

.event-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background-color: var(--orange-50);
}

.reviews h2 {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.review-header h3 {
    font-weight: 700;
    font-size: 1.125rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--orange-600);
    color: white;
}

.contact h2 {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-form {
    max-width: 32rem;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.9);
}

.btn-submit {
    width: 100%;
    background-color: white;
    color: var(--orange-600);
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #f3f4f6;
}

/* Footer */
footer {
    background-color: #111827;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

/* Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--orange-600);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .events-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}