/* Hauptfarbschema */
:root {
    --primary-color: #0F172A;    /* Noch dunkleres Blau */
    --secondary-color: #F39C12;  /* Orange für Icons */
    --accent-color: #1E3A8A;     /* Dunkles Blau */
    --text-color: #333;
    --light-bg: #FEF5E7;
    --white: #ffffff;
    --dark-blue: #1E3A8A;
}

/* Grundlegende Stile */
body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fcfcfc;
}

/* Header und Navigation */
.main-header {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
}

/* Header-Platzhalter */
.header-spacer {
    height: 90px;
}

.navbar {
    padding: 1.2rem 0;
    background: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color) !important;
}

.navbar-brand i {
    color: var(--secondary-color) !important;
}

.navbar-brand:hover {
    color: var(--text-color) !important;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    margin: 0 0.3rem;
    border-radius: 25px;
    text-decoration: none !important;
}

.nav-link i {
    color: var(--secondary-color) !important;
}

.nav-link i + span {
    margin-left: 8px;
}

.nav-link:hover {
    color: var(--text-color) !important;
    background: rgba(243, 156, 18, 0.1);
}

.navbar-toggler {
    border: none !important;
    padding: 0.5rem !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 1rem 0 3rem 0;
}

.hero-section img {
    border-radius: 20px;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.2), rgba(230, 126, 34, 0.2));
    border-radius: 20px;
    pointer-events: none;
}

.hero-section .text-white {
    z-index: 1;
}

.hero-section h1 {
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section .lead {
    font-size: 1.4rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, #F39C12, #E67E22) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Cards */
.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.card:hover .card-img-top {
    transform: none;
}

.card-body {
    padding: 2rem;
}

.card h3 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.bg-light {
    background: var(--white) !important;
    border-radius: 20px;
    box-shadow: none;
}

/* Icons */
.fas {
    color: var(--secondary-color);
}

.nav-link:hover .fas {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Listen */
.list-unstyled li {
    margin-bottom: 0.8rem;
}

.list-unstyled li a {
    transition: all 0.3s ease;
}

.list-unstyled li a:hover {
    transform: translateX(5px);
    display: inline-block;
}

/* Footer */
footer {
    padding-top: 50px;
}

footer.bg-dark {
    background: linear-gradient(to right, #0F172A, #1E293B) !important;
    padding-top: 50px !important;
    padding-bottom: 30px !important;
}

footer a.text-light {
    color: var(--white) !important;
}

footer h5 {
    color: var(--white) !important;
}

footer a {
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

footer a:before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--white) !important;
    padding-left: 25px;
}

footer a:hover:before {
    opacity: 1;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.list-unstyled {
    margin: 0;
    padding: 0;
}

.list-unstyled li {
    margin-bottom: 1rem;
}

hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    padding-top: 1rem;
}

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

.footer-section h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white) !important;
    padding-left: 5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    font-size: 1.6rem;
    color: var(--white);
    transition: all 0.3s ease;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white) !important;
}

/* Custom Components */
.bg-light {
    background: var(--white) !important;
    border-radius: 20px;
    box-shadow: none;
}

/* Spezifische Seitenbereiche */
.beach-tips,
.accommodation-info,
.highlights-section {
    background: transparent !important;
    box-shadow: none !important;
    padding: 2rem 0 !important;
}

.beach-tips h3,
.accommodation-info h3,
.highlights-section h3 {
    margin-bottom: 2rem !important;
}

.highlights-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
}

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

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .hero-section {
        margin: 0.5rem 0 2rem 0;
        border-radius: 15px;
    }
    
    .hero-section img {
        height: 400px !important;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .card-img-top {
        height: 200px;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.8rem !important;
        text-align: center;
    }

    /* Abstände für Kultur-Seite und Kontakt-Seite */
    .col-md-6 {
        margin-bottom: 2rem;
    }

    .col-md-6:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        text-align: left;
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.8rem 1rem !important;
        text-align: left;
    }
}

/* Custom Utilities */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.bg-overlay {
    background: rgba(0,0,0,0.5);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Neue Aktivitäten-Sektion Styles */
.activity-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.activity-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}

.activity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: var(--white);
}

.activity-overlay h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.activity-card:hover img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.season-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Grundlegende Stile */
main {
    margin-top: 90px;
}

/* Desktop Styles */
@media (min-width: 992px) {
    .beach-tips,
    .accommodation-info,
    .highlights-section {
        background: #fff !important;
        border-radius: 15px;
        padding: 3rem !important;
        margin: 2rem 0;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
        border: none;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 6rem;
        padding: 0 3rem;
    }
}

.webdesign-link {
    color: var(--secondary-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.webdesign-link:hover {
    color: var(--white) !important;
} 