/* =========================================
   03 Nautical Boy (Denizci Teması)
   ========================================= */

:root {
    --navy: #1A365D;
    --red: #E53E3E;
    --light-blue: #EBF8FF;
    --white: #FFFFFF;
    
    --font-heading: 'Baloo 2', cursive;
    --font-body: 'Quicksand', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.nautical-hero {
    position: relative;
    background-color: var(--light-blue);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 200px;
}

.clouds {
    position: absolute;
    top: 50px;
    width: 100%;
    height: 150px;
    overflow: hidden;
    pointer-events: none;
}
.clouds i {
    position: absolute;
    color: var(--white);
    font-size: 5rem;
    opacity: 0.8;
}
.cloud1 { left: 10%; animation: float 15s linear infinite; }
.cloud2 { right: 20%; top: 40px; font-size: 3rem !important; animation: float 20s linear infinite reverse; }

@keyframes float {
    0% { transform: translateX(0); }
    50% { transform: translateX(50px); }
    100% { transform: translateX(0); }
}

.hero-content {
    z-index: 10;
    max-width: 600px;
    padding: 0 20px;
}

.nautical-icon {
    font-size: 5rem;
    color: var(--red);
    margin-bottom: 20px;
}

.names {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4A5568;
}

/* SVG Waves */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
}
.waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    min-height: 100px;
    max-height: 150px;
}
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

.boat {
    position: absolute;
    bottom: 30px;
    left: 20%;
    font-size: 4rem;
    color: var(--navy);
    animation: sail 10s ease-in-out infinite alternate;
    z-index: 10;
}
@keyframes sail {
    0% { transform: translateX(0) rotate(-5deg); }
    100% { transform: translateX(50vw) rotate(5deg); }
}

/* Details Section */
.nautical-details {
    padding: 80px 5%;
    background-color: var(--white);
    background-image: repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(26, 54, 93, 0.05) 19px, rgba(26, 54, 93, 0.05) 20px);
}

.details-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.nautical-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    border: 4px solid var(--navy);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 8px 8px 0 var(--red);
    position: relative;
    transition: transform 0.3s ease;
}
.nautical-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid var(--white);
}

.nautical-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 10px;
}

.btn-nautical {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--navy);
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    border-radius: 20px;
    margin-top: 15px;
    transition: all 0.3s ease;
}
.btn-nautical:hover {
    background-color: var(--navy);
    color: var(--white);
}

/* RSVP Section */
.nautical-rsvp {
    padding: 80px 5%;
    background-color: var(--navy);
    color: var(--white);
    display: flex;
    justify-content: center;
}

.rope-border {
    width: 100%;
    max-width: 600px;
    border: 4px dashed var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
}

.rope-border h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--red);
}
.rope-border p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.nautical-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nautical-form input,
.nautical-form select {
    padding: 15px;
    border: 2px solid var(--white);
    border-radius: 10px;
    background-color: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}
.nautical-form input::placeholder {
    color: rgba(255,255,255,0.7);
}
.nautical-form select option {
    background-color: var(--navy);
}

.btn-nautical-solid {
    padding: 15px;
    background-color: var(--red);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.btn-nautical-solid:hover {
    background-color: #C53030;
    transform: scale(1.02);
}

.form-message {
    margin-top: 15px;
    font-weight: 700;
}

.nautical-footer {
    background-color: var(--navy);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.nautical-footer a {
    color: var(--light-blue);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
    .names { font-size: 2.5rem; }
    .boat { font-size: 3rem; }
    .nautical-card { margin-top: 30px; }
    .rope-border { padding: 40px 20px; }
}
