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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Header & Navigation */
.hero {
    background: linear-gradient(rgba(0,123,191,0.7), rgba(0,123,191,0.5)),
                url('segelyacht-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    color: white;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffd700;
}

.hero-content {
    text-align: center;
    padding: 8rem 2rem 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255,215,0,0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,215,0,0.4);
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Photo Divider Sections */
.photo-divider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 0;
    margin: 0;
}

.photo-divider-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.divider-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: fadeInScale 1s ease-out;
}

.divider-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

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

.intro-section {
    background: white;
}

.intro-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #007bbf;
}

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

.intro-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.intro-card h3 {
    color: #007bbf;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Scenarios Section */
.scenarios-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.scenarios-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #007bbf;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.scenario-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
}

.scenario-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.scenario-card.premium {
    border: 3px solid #ffd700;
}

.scenario-card.standard {
    border: 3px solid #007bbf;
}

.scenario-card.catamaran {
    border: 3px solid #17a2b8;
}

.scenario-card.romantic {
    border: 3px solid #e91e63;
}

.scenario-header {
    padding: 1.5rem;
    position: relative;
}

.scenario-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.premium .scenario-badge {
    background: #ffd700;
    color: #333;
}

.standard .scenario-badge {
    background: #007bbf;
}

.catamaran .scenario-badge {
    background: #17a2b8;
}

.romantic .scenario-badge {
    background: #e91e63;
}

.scenario-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.scenario-subtitle {
    color: #666;
    font-size: 1rem;
}

.scenario-image {
    height: 200px;
    background: linear-gradient(45deg, #007bbf, #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin: 0 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.placeholder-image {
    font-size: 2rem;
    text-align: center;
}

/* Yacht Slideshow */
.yacht-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow-image.active {
    opacity: 1;
}

.slideshow-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1rem;
    text-align: center;
}

.yacht-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.click-hint {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Yacht Modal */
.yacht-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.yacht-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.yacht-modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #333;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.yacht-modal-close:hover {
    background: rgba(255,255,255,1);
    transform: scale(1.1);
}

.yacht-details {
    padding: 2rem;
}

.yacht-details h2 {
    color: #007bbf;
    margin-bottom: 1rem;
    text-align: center;
}

.yacht-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.yacht-info-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #007bbf;
}

.yacht-info-card h3 {
    color: #007bbf;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.yacht-info-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.yacht-info-list li::before {
    content: "⚓";
    position: absolute;
    left: 0;
    color: #007bbf;
}

.yacht-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.yacht-gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.yacht-gallery img:hover {
    transform: scale(1.05);
}

.scenario-details {
    padding: 1.5rem;
}

.scenario-details p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.pros, .cons {
    padding: 1rem;
    border-radius: 10px;
}

.pros {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
}

.cons {
    background: linear-gradient(135deg, #f8d7da, #f1b0b7);
}

.pros h4, .cons h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.pros ul, .cons ul {
    list-style: none;
    padding-left: 0;
}

.pros li, .cons li {
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.cons li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.scenario-price {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bbf;
}

.price-detail {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

.price-detail a {
    color: #007bbf;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.price-detail a:hover {
    color: #005a8f;
    text-decoration: underline;
}

/* Charter Section */
.charter-section {
    background: white;
}

.charter-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #007bbf;
}

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

.charter-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.charter-card:hover {
    transform: translateY(-5px);
}

.charter-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.charter-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.charter-link {
    display: inline-block;
    background: white;
    color: #333;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.charter-link:hover {
    background: #ffd700;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #007bbf;
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.faq-question h3 {
    color: #007bbf;
    font-size: 1.3rem;
    margin: 0;
}

.faq-toggle {
    font-size: 2rem;
    color: #007bbf;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 2rem;
}

.faq-example {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #007bbf;
}

.faq-example h4 {
    color: #007bbf;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-example ul {
    list-style: none;
    padding: 0;
}

.faq-example li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.faq-example li::before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #007bbf;
    font-size: 1.2rem;
}

.faq-option {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #6c757d;
}

.faq-option.highlight {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-left: 4px solid #28a745;
}

.faq-option h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-option p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.faq-option p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    background: rgba(40, 167, 69, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: block;
}

.highlight-text strong {
    color: #28a745;
}

/* Route Section */
.route-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.route-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #007bbf;
}

.route-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.route-image-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.route-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.route-map {
    width: 100%;
    height: auto;
    display: block;
}

.route-description {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.route-description p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.route-description ul {
    list-style: none;
    padding: 0;
}

.route-description li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid #e9ecef;
}

.route-description li:last-child {
    border-bottom: none;
}

/* Daily Schedule Section */
.daily-schedule-section {
    background: white;
}

.daily-schedule-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #007bbf;
}

.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #007bbf, #0056b3);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    opacity: 0;
    animation: fadeInTimeline 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }
.timeline-item:nth-child(8) { animation-delay: 0.8s; }
.timeline-item:nth-child(9) { animation-delay: 0.9s; }
.timeline-item:nth-child(10) { animation-delay: 1s; }

@keyframes fadeInTimeline {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-time {
    min-width: 120px;
    font-weight: 600;
    color: #007bbf;
    font-size: 0.95rem;
    padding-top: 0.3rem;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #007bbf;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 1.5rem;
    width: 12px;
    height: 12px;
    background: #007bbf;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #007bbf;
}

.timeline-item.highlight .timeline-content {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left-color: #ffd700;
}

.timeline-item.highlight .timeline-content::before {
    background: #ffd700;
    box-shadow: 0 0 0 3px #ffd700;
}

.timeline-item.highlight .timeline-time {
    color: #ffd700;
    font-weight: 700;
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.timeline-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.timeline-content h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Costs Section */
.costs-section {
    background: white;
}

.costs-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #007bbf;
}

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

.cost-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #007bbf;
}

.cost-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.cost-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
}

.cost-item h4 {
    color: #007bbf;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cost-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #445566;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .scenarios-grid {
        grid-template-columns: 1fr;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .photo-divider {
        padding: 2rem 0;
    }

    .divider-image {
        border-radius: 15px;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.5rem;
    }

    .faq-option {
        padding: 1rem;
    }

    .faq-example {
        padding: 1rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-time {
        min-width: 80px;
        font-size: 0.85rem;
    }

    .timeline-content::before {
        left: -1.5rem;
    }

    .timeline-item {
        gap: 1rem;
    }

    .timeline-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 4rem 1rem 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .scenario-details {
        padding: 1rem;
    }

    .pros, .cons {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }

    .pros li, .cons li {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }

    .scenario-price {
        padding: 0.8rem;
        margin-top: 0.8rem;
    }

    .price {
        font-size: 1.3rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scenario-card {
    animation: fadeInUp 0.6s ease-out;
}