@import url('https://fonts.googleapis.com/css2?family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');

@font-face {
    font-family: 'BirdCharms';
    src: url('../assets/BirdCharmsScript-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-image: url('../assets/Header Bckgr1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #2897B7;
    line-height: 1.6;
    min-height: 100vh;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #3E788E;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px 30px;
    background: rgba(255, 255, 255, 0.1);
}

.nav-item {
    text-decoration: none;
    color: #3E788E;
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Inria Serif', serif;
}

.nav-item:hover {
    color: #2897b7;
}

.nav-item.active {
    border-bottom: 2px solid #3E788E;
    font-weight: 600;
    position: relative;
}

.nav-item.active::before {
    content: "✹";
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: #3E788E;
    font-size: 20px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 20px 80px;
    position: relative;
    overflow: hidden;
}

.decorative-elements {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -30px;
    height: 383px;
}

.header-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.header-image {
    height: 383px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.main-title {
    font-family: 'BirdCharms', cursive;
    font-size: 80px;
    color: #2897B7;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: normal;
    line-height: 1;
}

.subtitle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0 auto 40px;
    padding: 0 50px;
    flex-wrap: wrap;
}

.subtitle-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.subtitle-part {
    font-family: 'Inria Serif', serif;
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 20px;
    text-transform: uppercase;
    color: #b9976f;
    text-align: center;
}

.ibiza {
    color: #d55f37;
}

.sun-divider {
    width: 50px;
    height: 60px;
    object-fit: contain;
}

/* Travel Content */
.travel-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.intro-section {
    text-align: center;
    margin-bottom: 80px;
}

.intro-text {
    font-family: 'Jost', sans-serif;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
    color: #111111;
    margin-bottom: 30px;
    max-width: 983px;
    margin-left: auto;
    margin-right: auto;
}

.guide-button-wrapper {
    display: flex;
    justify-content: center;
}

.guide-button {
    display: inline-block;
    padding: 12px 40px;
    background-color: transparent;
    border: 2px solid #2897b7;
    color: #2897b7;
    font-family: 'Inria Serif', serif;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.guide-button:hover {
    background-color: #2897b7;
    color: #fff;
}

/* Hotel Section */
.hotel-section {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.hotel-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.hotel-card:nth-child(even) {
    flex-direction: row-reverse;
}

.hotel-image {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.hotel-details {
    flex: 1;
}

.hotel-name {
    font-family: 'Inria Serif', serif;
    font-size: 36px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2897b7;
    margin-bottom: 10px;
    font-weight: 700;
}

.hotel-address {
    margin-bottom: 20px;
}

.address-link {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    color: #2897b7;
    text-decoration: underline;
}

.address-link:hover {
    color: #1f7a94;
}

.hotel-description {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.5px;
    color: #111111;
    margin-bottom: 25px;
}

.website-button-wrapper {
    display: flex;
}

.website-button {
    display: inline-block;
    padding: 10px 30px;
    background-color: transparent;
    border: 2px solid #2897b7;
    color: #2897b7;
    font-family: 'Inria Serif', serif;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.website-button:hover {
    background-color: #2897b7;
    color: #fff;
}

/* Footer */
.footer {
    text-align: center;
    padding: 60px 20px 40px;
    margin-top: 80px;
}

.footer-divider {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.footer-divider-dots {
    width: 300px;
    height: auto;
    max-width: 90%;
    opacity: 0.7;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-script-image {
    display: none;
}

.footer-dots {
    width: 480px;
    height: auto;
    max-width: 90%;
}

.footer-script {
    font-family: 'BirdCharms', cursive;
    font-size: 48px;
    color: #b9976f;
    line-height: 1;
    margin: -20px 0;
}

.c-initial {
    letter-spacing: -10px;
}

.h-initial {
    letter-spacing: 0;
}

.footer-details {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-details .date,
.footer-details .location {
    font-family: 'Inria Serif', serif;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b9976f;
    margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        flex-direction: column;
        gap: 0;
        padding: 80px 20px 20px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .navigation.active {
        right: 0;
    }

    .nav-item {
        font-size: 18px;
        padding: 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(62, 120, 142, 0.1);
    }

    .nav-item.active::before {
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
    }

    .hero-section {
        padding: 80px 20px 40px;
        background: linear-gradient(to bottom, rgba(186, 216, 229, 0.4) 0%, rgba(186, 216, 229, 0.15) 50%, transparent 100%);
    }

    .decorative-elements {
        height: 250px;
        margin-bottom: 30px;
    }

    .header-image {
        height: 250px;
    }

    .main-title {
        font-size: 72px;
        margin-bottom: 30px;
    }

    .subtitle-container {
        flex-direction: column;
        gap: 5px;
        padding: 0 20px;
        text-align: center;
    }

    .subtitle-text {
        width: 100%;
        text-align: center;
    }

    .subtitle-part {
        font-size: 18px;
    }

    .sun-divider {
        width: 35px;
        height: 42px;
        order: 3;
        margin-top: 15px;
    }

    .travel-content {
        padding: 40px 20px;
    }

    .intro-text {
        font-size: 16px;
        line-height: 24px;
    }

    .hotel-card {
        flex-direction: column !important;
    }

    .hotel-image {
        width: 100%;
        height: auto;
    }

    .hotel-name {
        font-size: 28px;
    }

    .hotel-description {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-script {
        font-size: 48px;
        letter-spacing: -10px;
    }

    .c-initial {
        letter-spacing: -10px;
    }

    .h-initial {
        letter-spacing: 10px;
    }

    .footer-details {
        flex-direction: row;
        gap: 20px;
    }

    .footer-details .date,
    .footer-details .location {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .main-title {
        font-size: 56px;
    }

    .subtitle-container {
        gap: 10px;
    }

    .subtitle-part {
        font-size: 14px;
    }

    .sun-divider {
        width: 30px;
        height: 36px;
    }

    .hotel-name {
        font-size: 24px;
    }

    .hotel-description {
        font-size: 14px;
        line-height: 22px;
    }

    .footer-script {
        font-size: 48px;
    }

    .footer-details .date,
    .footer-details .location {
        font-size: 20px;
    }
}
