:root {
    --primary: #ff7eb3;
    --primary-light: #ffb6d9;
    --accent: #4ecdc4;
    --coral: #ff8b6a;
    --ocean: #0891b2;
    --sand: #fef9f3;
    --text: #2c3e50;
    --text-light: #6b7280;
    --white: #ffffff;
    --bg-main: #fef9f3;
    --bg-card: #ffffff;
    --shadow: rgba(255, 126, 179, 0.12);
    --shadow-hover: rgba(255, 126, 179, 0.2);
    --border: rgba(255, 126, 179, 0.15);
}

[data-theme="dark"] {
    --primary: #ff7eb3;
    --primary-light: #ffb6d9;
    --accent: #4ecdc4;
    --coral: #ff8b6a;
    --ocean: #0891b2;
    --sand: #1e293b;
    --text: #e2e8f0;
    --text-light: #94a3b8;
    --white: #2d3748;
    --bg-main: #1e293b;
    --bg-card: #2d3748;
    --shadow: rgba(255, 126, 179, 0.2);
    --shadow-hover: rgba(255, 126, 179, 0.3);
    --border: rgba(255, 126, 179, 0.2);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-main);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    transition: all 0.3s ease;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: var(--bg-card);
    box-shadow: 0 4px 12px var(--shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px var(--shadow-hover);
    border-color: var(--accent);
}

.theme-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--text);
    transition: all 0.3s ease;
}

.sun-icon {
    display: block;
}

.moon-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: none;
}

[data-theme="dark"] .moon-icon {
    display: block;
}

header {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: 
        linear-gradient(135deg, rgba(255, 126, 179, 0.4) 0%, rgba(78, 205, 196, 0.4) 100%),
        url('photos/IMG_1664.JPEG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background 0.3s ease;
}

header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
}

.address {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    letter-spacing: 0.02em;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
}

.tab-nav {
    background: var(--bg-card);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px var(--shadow);
    border-bottom: 1px solid var(--border);
    transition: background-color 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0;
}

.tab-btn {
    flex: 1;
    max-width: 200px;
    padding: 1.25rem 2rem;
    background: transparent;
    color: var(--text-light);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.02em;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--accent);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, var(--primary), var(--accent));
    height: 3px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-content.active {
    display: block;
}

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

h2 {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.01em;
}

/* Photos Section */
.video-section {
    max-width: 1200px;
    margin: 0 auto 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow-hover);
    border: 3px solid var(--primary);
}

.property-video {
    width: 100%;
    height: auto;
    display: block;
    background: var(--bg-card);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.photo-item {
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--border);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px var(--shadow-hover);
    border-color: var(--primary);
}

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

/* Lightbox effect on click */
.photo-item {
    cursor: pointer;
}

.photo-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 400;
    box-shadow: 0 4px 12px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.photo-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.photo-placeholder:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px var(--shadow-hover);
}

.photo-placeholder:hover::before {
    opacity: 1;
}

.photo-placeholder small {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    font-weight: 300;
}

/* Booking Section */
.booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Map Card - spans full width on smaller screens */
.map-card {
    grid-column: 1 / -1;
}

@media (min-width: 1200px) {
    .map-card {
        grid-column: span 2;
    }
}

.info-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--shadow-hover);
    border-color: var(--primary);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card p {
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.info-card strong {
    color: var(--primary);
    font-weight: 600;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 0.75rem 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.3s ease;
}

.info-card ul li:hover {
    padding-left: 0.5rem;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--primary);
}

/* Map Section */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px var(--shadow);
}

.map-container iframe {
    display: block;
    width: 100%;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

[data-theme="dark"] .map-container iframe {
    filter: invert(90%) hue-rotate(180deg);
}

.nav-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px var(--shadow);
}

.nav-btn svg {
    transition: transform 0.3s ease;
}

.nav-btn:hover svg {
    transform: scale(1.1);
}

.google-maps {
    background: linear-gradient(135deg, #0891b2, #0e7490);
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.google-maps:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.4);
}

.waze {
    background: linear-gradient(135deg, #9333ea, #7e22ce);
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.waze:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
}

.apple-maps {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.apple-maps:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

/* Attractions Section */
.attractions-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.attractions-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

.attraction-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

.attraction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-hover);
}

.attraction-card.featured {
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .attraction-card.featured {
        grid-column: span 2;
    }
}

.attraction-card.highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.attraction-card.highlight .card-header h3 {
    color: white;
}

.attraction-card.highlight .card-content {
    color: rgba(255, 255, 255, 0.95);
}

.attraction-card.highlight .attraction-item h4 {
    color: white;
}

.attraction-card.highlight .attraction-item {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 1.5rem 2rem;
}

.card-header h3 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-content {
    padding: 2rem;
}

.attraction-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.attraction-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.attraction-item h4 {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.restaurant-link {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
}

.restaurant-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.restaurant-link::after {
    content: '↗';
    font-size: 0.875rem;
    opacity: 0.7;
}

.attraction-item p {
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.attraction-item.highlight-item {
    background: linear-gradient(135deg, rgba(255, 126, 179, 0.08), rgba(78, 205, 196, 0.08));
    padding: 1.25rem;
    border-radius: 12px;
    margin: 0.5rem 0;
    border: 2px solid var(--primary);
}

.attraction-item.highlight-item h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.attraction-item.highlight-item p strong {
    color: var(--primary);
}

/* Calendar Section */
.calendar-section {
    max-width: 900px;
    margin: 2rem auto;
}

.calendar-placeholder {
    background: var(--bg-card);
    padding: 4rem 3rem;
    border-radius: 16px;
    text-align: center;
    margin: 2rem 0;
    border: 2px dashed var(--border);
    box-shadow: 0 2px 8px var(--shadow);
    transition: background-color 0.3s ease;
}

.calendar-placeholder p {
    color: var(--text);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.calendar-placeholder small {
    color: var(--text-light);
    display: block;
    margin: 1.5rem 0 1rem;
}

.calendar-placeholder ul {
    list-style: none;
    padding: 1rem 0;
    display: inline-block;
    text-align: left;
}

.calendar-placeholder li {
    padding: 0.5rem 0;
    color: var(--text);
}

.season-info {
    background: linear-gradient(135deg, var(--coral), var(--primary));
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 2rem;
    color: white;
    box-shadow: 0 4px 12px var(--shadow);
}

.season-info h4 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.season-info p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 6rem;
}

footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

footer a:hover {
    color: white;
    border-bottom-color: white;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        height: 50vh;
        min-height: 350px;
        background-attachment: scroll;
    }
    
    .container {
        padding: 2rem 1rem;
    }
    
    .tab-btn {
        padding: 1rem 1rem;
        font-size: 0.875rem;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    h2 {
        margin-bottom: 2rem;
    }

    .theme-toggle {
        top: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 768px) {
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .attraction-card.featured {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .nav-container {
        gap: 0;
    }
    
    .tab-btn {
        max-width: none;
        font-size: 0.75rem;
        padding: 0.875rem 0.4rem;
    }
    
    .attractions-intro p {
        font-size: 1rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
}
