
/* Base Styles */
:root {
    /* Colors - Orange Theme */
    --background: hsl(30, 30%, 98%);
    --foreground: hsl(28, 25%, 10%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(28, 25%, 10%);
    --border: hsl(28, 5%, 90%);
    --input: hsl(28, 5%, 85%);
    
    /* Primary - Orange */
    --primary-hue: 25;
    --primary: hsl(var(--primary-hue), 100%, 58%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-light: hsl(var(--primary-hue), 100%, 96%);
    --primary-medium: hsl(var(--primary-hue), 100%, 92%);
    
    /* Secondary - Orange */
    --secondary: hsl(28, 30%, 96%);
    --secondary-foreground: hsl(28, 25%, 10%);
    --muted: hsl(28, 30%, 96%);
    --muted-foreground: hsl(28, 10%, 40%);
    --accent: hsl(28, 30%, 92%);
    --accent-foreground: hsl(28, 25%, 15%);
    
    /* Teal Colors */
    --teal-50: #e6f7f5;
    --teal-100: #c1eae5;
    --teal-200: #9adcd4;
    --teal-300: #6ecdc2;
    --teal-400: #43c0b4;
    --teal-500: #2eaba0;
    --teal-600: #208e82;
    --teal-700: #177267;
    --teal-800: #10574d;
    --teal-900: #0b3b34;
    
    /* Orange Colors */
    --orange-50: #fff8f1;
    --orange-100: #ffe9d9;
    --orange-200: #ffd0b0;
    --orange-300: #ffb280;
    --orange-400: #ff9356;
    --orange-500: #ff752d;
    --orange-600: #e66218;
    --orange-700: #bf4b0c;
    --orange-800: #993a09;
    --orange-900: #7a2f08;
    
    /* Other */
    --radius: 0.75rem;
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-button: 0 4px 10px rgba(230, 98, 24, 0.3);
    --shadow-nav: 0 4px 20px rgba(0, 0, 0, 0.08);
    
    /* Breakpoints (for reference in JS) */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Common Elements */
.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.section-description {
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

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

.category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: var(--orange-100);
    color: var(--orange-800);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.category-badge.teal {
    background-color: var(--teal-100);
    color: var(--teal-800);
}

.category-badge.orange {
    background-color: var(--orange-100);
    color: var(--orange-800);
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--orange-600);
    color: white;
    border-radius: var(--radius);
    font-weight: 500;
    box-shadow: var(--shadow-button);
    transition: all 0.3s ease;
}

.primary-button:hover {
    background-color: var(--orange-700);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(230, 98, 24, 0.4);
}

.primary-button.teal {
    background-color: var(--teal-600);
    box-shadow: 0 4px 10px rgba(32, 142, 130, 0.3);
}

.primary-button.teal:hover {
    background-color: var(--teal-700);
    box-shadow: 0 6px 15px rgba(32, 142, 130, 0.4);
}

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--orange-600);
    font-weight: 500;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--orange-700);
}

.text-link.teal {
    color: var(--teal-600);
}

.text-link.teal:hover {
    color: var(--teal-700);
}

.text-link .icon-tiny {
    margin-left: 0.25rem;
}

.icon, .icon-small, .icon-tiny, .icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-small {
    width: 1.125rem;
    height: 1.125rem;
}

.icon-tiny {
    width: 1rem;
    height: 1rem;
}

.icon-large {
    width: 3rem;
    height: 3rem;
    opacity: 0.3;
}

.text-teal {
    color: var(--teal-700);
}

.bg-white {
    background-color: white;
}

.bg-pattern {
    background-image: linear-gradient(90deg, hsla(30, 100%, 98%, 0.05) 0%, hsla(30, 100%, 96%, 0.1) 100%);
}

.bg-orange-light {
    background-color: var(--orange-50);
}

.highlight {
    color: var(--orange-600);
}

.mt-12 {
    margin-top: 3rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 1rem 0;
    background-color: transparent;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-nav);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--orange-800);
}

.navbar-menu {
    display: none;
}

.navbar-button {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1.25rem;
    background-color: var(--orange-600);
    color: white;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    box-shadow: var(--shadow-button);
}

.navbar-button:hover {
    background-color: var(--orange-700);
}

@media (min-width: 768px) {
    .navbar-menu {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    
    .navbar-link {
        color: var(--orange-900);
        font-size: 0.875rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .navbar-link:hover {
        color: var(--orange-600);
    }
    
    .navbar-toggle {
        display: none;
    }
}

.navbar-toggle {
    color: var(--orange-900);
    padding: 0.5rem;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    z-index: 49;
    padding-top: 5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 100%;
}

.mobile-link {
    color: var(--orange-900);
    font-size: 1.25rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--orange-600);
}

.mobile-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--orange-600);
    color: white;
    border-radius: var(--radius);
    font-weight: 500;
    transition: background-color 0.3s ease;
    box-shadow: var(--shadow-button);
}

.mobile-button:hover {
    background-color: var(--orange-700);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    background-image: linear-gradient(135deg, rgba(255, 248, 241, 0.8) 0%, rgba(255, 224, 178, 0.3) 100%);
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        padding-top: 9rem;
        padding-bottom: 9rem;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding-top: 11rem;
        padding-bottom: 11rem;
    }
}

.hero-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--orange-900);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--orange-700);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-decoration {
    position: absolute;
    filter: blur(48px);
    opacity: 0.6;
    border-radius: 50%;
}

.hero-decoration-1 {
    top: 0;
    right: 0;
    width: 33.333%;
    height: 33.333%;
    background-color: var(--orange-100);
    animation: float 6s ease-in-out infinite;
}

.hero-decoration-2 {
    bottom: 0;
    left: 0;
    width: 25%;
    height: 25%;
    background-color: var(--orange-200);
    animation: float 6s ease-in-out infinite reverse;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.chevron {
    transition: transform 0.3s ease;
}

.primary-button:hover .chevron {
    transform: translateX(4px);
}

/* Two-column Layout */
.two-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .two-columns {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    .column.content-column {
        order: 1;
    }
    
    .column.image-column,
    .column.map-column {
        order: 2;
    }
}

.section-text {
    margin-bottom: 1.5rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-title {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.image-container,
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background-color: var(--teal-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-500);
    font-size: 1.125rem;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.card-image {
    height: 12rem;
    background-color: var(--teal-50);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image.teal {
    color: var(--teal-300);
}

.card-image.orange {
    background-color: var(--orange-100);
    color: var(--orange-300);
}

.card-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.5rem;
    background-color: var(--teal-600);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 0.25rem;
}

.card-tag.orange {
    background-color: var(--orange-600);
}

.card-content {
    padding: 1.5rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--teal-800);
    margin-bottom: 0.5rem;
}

.card-price {
    font-weight: 600;
    color: var(--teal-600);
}

.card-text {
    color: var(--teal-700);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-card);
}

.stars {
    display: flex;
    margin-bottom: 1rem;
    gap: 0.25rem;
}

.star {
    color: var(--teal-500);
    fill: var(--teal-500);
}

.testimonial-text {
    color: var(--teal-800);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 500;
    color: var(--teal-700);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    background-color: var(--teal-600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--teal-700);
}

.icon-text {
    font-weight: 600;
    font-size: 1.125rem;
}

/* Attractions */
.attractions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .attractions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.attraction {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.attraction:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.attraction-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.attraction-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--teal-800);
    margin-bottom: 0.25rem;
}

.attraction-text {
    color: var(--teal-700);
    font-size: 0.875rem;
}

/* Footer */
.site-footer {
    background-color: var(--teal-900);
    color: var(--teal-50);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Sora', sans-serif;
}

.footer-text {
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-item .icon-small,
.footer-hours-item .icon-small {
    color: var(--teal-300);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-hours-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-hours-day {
    font-weight: 500;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--teal-800);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--teal-400);
}

.copyright {
    margin-bottom: 0.5rem;
}

.powered-by span {
    color: var(--teal-300);
    font-weight: 500;
}

.powered-by a {
    color: var(--teal-300);
    font-weight: 600;
    transition: color 0.3s ease;
}

.powered-by a:hover {
    color: white;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 40;
    width: 3rem;
    height: 3rem;
    background-color: var(--orange-600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--orange-700);
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

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

.animate-in {
    animation: fade-in 0.5s ease-out forwards, scale-in 0.4s ease-out forwards;
}

.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-400 {
    animation-delay: 400ms;
}

.delay-500 {
    animation-delay: 500ms;
}

.slide-in-item {
    animation: slide-in 0.5s ease-out forwards;
    opacity: 0;
}

/* Apply sequential delays to slid-in items */
.card-grid .slide-in-item:nth-child(1) { animation-delay: 0ms; }
.card-grid .slide-in-item:nth-child(2) { animation-delay: 100ms; }
.card-grid .slide-in-item:nth-child(3) { animation-delay: 200ms; }
.card-grid .slide-in-item:nth-child(4) { animation-delay: 300ms; }

.testimonials-grid .slide-in-item:nth-child(1) { animation-delay: 0ms; }
.testimonials-grid .slide-in-item:nth-child(2) { animation-delay: 150ms; }
.testimonials-grid .slide-in-item:nth-child(3) { animation-delay: 300ms; }

.attractions-grid .slide-in-item:nth-child(1) { animation-delay: 0ms; }
.attractions-grid .slide-in-item:nth-child(2) { animation-delay: 100ms; }
.attractions-grid .slide-in-item:nth-child(3) { animation-delay: 200ms; }
.attractions-grid .slide-in-item:nth-child(4) { animation-delay: 100ms; }
.attractions-grid .slide-in-item:nth-child(5) { animation-delay: 200ms; }
.attractions-grid .slide-in-item:nth-child(6) { animation-delay: 300ms; }