/* Import Distinctive Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Public+Sans:wght@400;500;600&display=swap');

/* CSS Variables for Theming */
:root {
    --color-primary: #FF6B6B;
    --color-primary-dark: #E84A4A;
    --color-secondary: #0FA3B1;
    --color-secondary-dark: #0D8793;
    --color-accent: #FFB347;
    --color-text-dark: #1A1A2E;
    --color-text-medium: #3D3D4E;
    --color-text-light: #6B6B7F;
    --color-bg-light: #FAFAFA;
    --color-white: #FFFFFF;

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Public Sans', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Header Styles */
header {
    background: linear-gradient(135deg,
        var(--color-primary) 0%,
        #FF8A80 50%,
        var(--color-secondary) 100%);
    color: white;
    padding: 1.25rem 2rem;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 179, 71, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(15, 163, 177, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

header h1 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width var(--transition-smooth);
}

nav a:hover::after {
    width: 100%;
}

.coming-soon {
    font-size: 0.7rem;
    opacity: 0.85;
    font-weight: 400;
    margin-left: 0.25rem;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Hero Section */
#hero {
    background:
        linear-gradient(135deg,
            rgba(255, 107, 107, 0.95) 0%,
            rgba(255, 138, 128, 0.93) 30%,
            rgba(15, 163, 177, 0.95) 70%,
            rgba(13, 135, 147, 0.97) 100%
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
    color: white;
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 163, 177, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

#hero h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#hero p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 500;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: white;
    color: var(--color-primary);
    padding: 1.15rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-accent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.cta-button > * {
    position: relative;
    z-index: 1;
}

/* Destinations Section */
.destinations-section {
    padding: 5rem 2rem;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(15, 163, 177, 0.05) 0%, transparent 50%),
        var(--color-white);
}

.section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-text-medium);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

/* Destination Cards Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.destination-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    animation: fadeInCard 0.6s ease-out both;
}

.destination-card:nth-child(1) { animation-delay: 0.1s; }
.destination-card:nth-child(2) { animation-delay: 0.2s; }
.destination-card:nth-child(3) { animation-delay: 0.3s; }
.destination-card:nth-child(4) { animation-delay: 0.4s; }
.destination-card:nth-child(5) { animation-delay: 0.5s; }
.destination-card:nth-child(6) { animation-delay: 0.6s; }
.destination-card:nth-child(7) { animation-delay: 0.7s; }

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

.destination-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card:hover .card-image img {
    transform: scale(1.08);
}

.location-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.5rem 1.1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.card-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-family: var(--font-display);
    color: var(--color-text-dark);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.highlights {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.highlights li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--color-text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlights li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 2px solid #F0F0F5;
}

.price-indicator {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.learn-more {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    padding: 0.7rem 1.75rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

/* Newsletter CTA Section */
.newsletter-cta {
    background:
        linear-gradient(135deg,
            rgba(15, 163, 177, 0.08) 0%,
            rgba(255, 179, 71, 0.08) 100%
        );
    padding: 5rem 2rem;
    margin: 4rem 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    transform: translateX(-50%);
    animation: pulse 8s ease-in-out infinite;
}

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

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-cta h2 {
    font-family: var(--font-display);
    color: var(--color-text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.newsletter-cta p {
    font-size: 1.15rem;
    color: var(--color-text-medium);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.coming-soon-text {
    color: var(--color-text-light);
    font-style: italic;
    font-size: 1rem;
    margin-top: 1.5rem;
}

/* Footer */
footer {
    background: var(--color-text-dark);
    color: white;
    padding: 4rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-display);
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--color-primary);
}

.affiliate-disclosure {
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */

/* Tablets and below */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }

    #hero h2 {
        font-size: 3rem;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    header h1 {
        font-size: 1.5rem;
    }

    nav {
        flex-direction: column;
        gap: 0.75rem;
    }

    #hero {
        padding: 5rem 1.5rem;
    }

    #hero h2 {
        font-size: 2.25rem;
    }

    #hero p {
        font-size: 1.15rem;
    }

    .destinations-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-intro {
        font-size: 1.05rem;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card-content h3 {
        font-size: 1.35rem;
    }

    .newsletter-cta {
        padding: 3.5rem 1.5rem;
    }

    .newsletter-cta h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    footer {
        padding: 2.5rem 1rem 1rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    header h1 {
        font-size: 1.3rem;
    }

    #hero h2 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .card-image {
        height: 220px;
    }

    .card-content {
        padding: 1.5rem;
    }

    .highlights li {
        font-size: 0.9rem;
    }

    .learn-more {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
}
