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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background-color: #2f3b3a;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: 'Forum', serif;
    font-size: 1.8rem;
    color: #c9a227;
    letter-spacing: 2px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    font-size: 2rem;
    color: #fff;
    font-weight: 300;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #c9a227;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-top: 75px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-content {
    position: absolute;
    top: 10%;
    left: 5%;
    z-index: 2;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 600;
    font-style: italic;
    color: #c9a227;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Overlay Cards */
.overlay-cards {
    position: absolute;
    bottom: 5%;
    left: 5%;
    right: 5%;
    display: flex;
    gap: 20px;
    z-index: 3;
}

.overlay-card {
    background-color: rgba(178, 189, 162, 0.92);
    padding: 35px 30px;
    max-width: 450px;
}

.overlay-card.left {
    transform: translateY(-50px);
}

.overlay-card.right {
    margin-left: auto;
}

.overlay-card h2 {
    font-family: 'Forum', serif;
    font-size: 1.3rem;
    color: #3d4a47;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.overlay-card p {
    font-size: 0.95rem;
    color: #3d4a47;
    line-height: 1.7;
}

/* Wave Section */
.wave-section {
    background-color: #fff;
    padding: 60px 0 0;
    position: relative;
}

.wave-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 80px 40px;
    position: relative;
    z-index: 10;
}

.wave-top {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.wave-top svg {
    width: 100%;
    height: 100%;
}

.shell-icon {
    width: 80px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(76%) sepia(27%) saturate(704%) hue-rotate(6deg) brightness(93%) contrast(89%);
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 60px 20px 80px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h2 {
    font-family: 'Forum', serif;
    font-size: 2rem;
    color: #3d4a47;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.about-header .subtitle {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

.about-content {
    display: grid;
    grid-template-columns: 200px 1fr 250px;
    gap: 40px;
    align-items: start;
}

.stats-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.stat-item.year {
    border: 2px solid #c9a227;
    padding: 30px 20px;
    position: relative;
}

.stat-item.year .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: #c9a227;
    display: block;
}

.stat-item.year .stat-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #666;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 10px;
}

.stat-row {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #3d4a47;
}

.stat-plus {
    font-size: 1.5rem;
    color: #c9a227;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 1px;
    margin-top: 5px;
}

.stat-icon {
    width: 40px;
    height: auto;
    margin-top: 10px;
    opacity: 0.7;
}

.about-text {
    padding: 20px 0;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Fish Section */
.fish-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    max-height: 600px;
}

.fish-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background-color: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.contact-item h3 {
    font-family: 'Forum', serif;
    font-size: 1rem;
    color: #3d4a47;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 0.95rem;
    color: #666;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: block;
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* Footer */
.footer {
    position: relative;
    background-color: #fff;
    padding-top: 100px;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    background-color: #0fa6cd;
    padding: 30px 20px;
    text-align: center;
}

.footer-content p {
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-column {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }

    .stat-item.year {
        padding: 20px 40px;
    }

    .overlay-cards {
        flex-direction: column;
        align-items: center;
    }

    .overlay-card.left,
    .overlay-card.right {
        transform: none;
        margin-left: 0;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-img {
        height: 35px;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #2f3b3a;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav.active {
        display: flex;
    }

    .hero {
        min-height: 600px;
        margin-top: 65px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-content {
        top: 5%;
        left: 3%;
    }

    .overlay-cards {
        bottom: 3%;
        left: 3%;
        right: 3%;
    }

    .overlay-card {
        padding: 25px 20px;
    }

    .overlay-card h2 {
        font-size: 1.1rem;
    }

    .overlay-card p {
        font-size: 0.85rem;
    }

    .about-header h2 {
        font-size: 1.5rem;
    }

    .stats-column {
        flex-direction: column;
        align-items: center;
    }

    .contact-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .overlay-card {
        padding: 20px 15px;
    }

    .overlay-card h2 {
        font-size: 1rem;
    }

    .overlay-card p {
        font-size: 0.8rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .stat-item.year .stat-number {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}
