/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --flesh-light: #f5e6d3;
    --flesh-medium: #e8d4b0;
    --flesh-dark: #d4a574;
    --flesh-deep: #c19a6b;
    --flesh-pink: #f4c2c2;
    --flesh-rose: #e8a598;
    --pearl-white: #f8f8ff;
    --foam-white: #ffffff;
    --seaweed-green: #8b7355;
    --mystery-purple: #a0826d;
    --text-light: #3e2723;
    --text-dim: #6d4c41;
}

body {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(180deg, var(--flesh-light) 0%, var(--flesh-medium) 50%, var(--flesh-dark) 100%);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* Animated Bubbles Background */
.bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    animation: float-up 8s infinite ease-in-out;
}

.bubble::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    filter: blur(2px);
}

.bubble-1 {
    width: 20px;
    height: 20px;
    bottom: -20px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.bubble-2 {
    width: 15px;
    height: 15px;
    bottom: -15px;
    left: 30%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.bubble-3 {
    width: 25px;
    height: 25px;
    bottom: -25px;
    left: 50%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.bubble-4 {
    width: 18px;
    height: 18px;
    bottom: -18px;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.bubble-5 {
    width: 22px;
    height: 22px;
    bottom: -22px;
    left: 85%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.bubble-6 {
    width: 12px;
    height: 12px;
    bottom: -12px;
    left: 25%;
    animation-delay: 5s;
    animation-duration: 11s;
}

@keyframes float-up {
    0% {
        bottom: -50px;
        transform: translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateX(20px) scale(1.1);
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        bottom: 110vh;
        transform: translateX(-20px) scale(0.9);
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(245, 230, 211, 0.95) 0%, rgba(245, 230, 211, 0.8) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(62, 39, 35, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-symbol {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--flesh-deep);
    text-shadow: 2px 2px 4px rgba(62, 39, 35, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--flesh-deep);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--flesh-deep);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--flesh-deep);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, var(--flesh-medium) 0%, var(--flesh-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(244, 194, 194, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(160, 130, 109, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}

.hero-title {
    margin-bottom: 2rem;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--flesh-deep);
    text-shadow: 
        3px 3px 6px rgba(62, 39, 35, 0.4),
        0 0 20px rgba(244, 194, 194, 0.3);
    margin-bottom: 1rem;
    animation: gentle-float 3s infinite ease-in-out;
}

.subtitle {
    font-family: 'Crimson Text', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--flesh-pink);
    font-style: italic;
    margin-bottom: 1rem;
}

.clam-symbol {
    font-size: 3rem;
    opacity: 0.8;
    animation: rotate-slow 10s infinite linear;
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--pearl-white);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-family: 'Playfair Display', serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--flesh-deep);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary {
    background: var(--flesh-deep);
    color: var(--pearl-white);
}

.btn-secondary {
    background: transparent;
    color: var(--flesh-deep);
}

.btn:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--pearl-white);
}

.ocean-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(0deg, rgba(45, 80, 22, 0.3) 0%, transparent 100%);
    opacity: 0.5;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Section Styles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--flesh-deep);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--flesh-deep);
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--flesh-dark) 0%, var(--flesh-medium) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.italic-intro {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--flesh-pink);
    margin-bottom: 2rem;
    text-align: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--flesh-medium) 0%, var(--flesh-dark) 100%);
    border: 3px solid var(--flesh-deep);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.3);
    position: relative;
    overflow: hidden;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.placeholder-emoji {
    font-size: 3rem;
}

.placeholder-emoji.large {
    font-size: 5rem;
}

.image-placeholder p {
    color: var(--flesh-deep);
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

/* Gallery Section */
.gallery {
    background: var(--flesh-medium);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 2px solid var(--flesh-deep);
    color: var(--flesh-deep);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--flesh-deep);
    color: var(--pearl-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, var(--flesh-dark) 0%, var(--flesh-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.image-overlay h3 {
    color: var(--pearl-white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.image-overlay p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin: 0;
}

/* Secrets Section */
.secrets {
    background: linear-gradient(180deg, var(--flesh-dark) 0%, var(--mystery-purple) 100%);
}

.secrets-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.secret-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(62, 39, 35, 0.3);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.secret-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.3);
}

.secret-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.secret-card h3 {
    color: var(--flesh-deep);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.secret-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.secret-message {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(62, 39, 35, 0.2);
}

.italic-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--flesh-pink);
    margin-bottom: 1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--flesh-medium);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(62, 39, 35, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--flesh-deep);
    cursor: pointer;
    z-index: 1;
    background: rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-lightbox:hover {
    background: rgba(62, 39, 35, 0.2);
}

.lightbox-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.image-placeholder.large {
    width: 300px;
    height: 300px;
}

.lightbox-info {
    padding: 2rem;
    text-align: center;
}

.lightbox-title {
    color: var(--flesh-deep);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lightbox-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--flesh-light);
    border-top: 1px solid rgba(62, 39, 35, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--flesh-deep);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--flesh-deep);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(62, 39, 35, 0.1);
    color: var(--text-dim);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--flesh-medium);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(62, 39, 35, 0.1);
        padding: 2rem 0;
        border-top: 1px solid rgba(62, 39, 35, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .secrets-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--flesh-light);
}

::-webkit-scrollbar-thumb {
    background: var(--flesh-deep);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--flesh-pink);
}
