/* ==========================================
   KORMORANOS BEACH HOTEL - STYLES
   ========================================== */

/* CSS Variables */
:root {
    --azure: #1a6b8a;
    --deep-sea: #0d3d4d;
    --sand: #e8dcc4;
    --warm-sand: #d4c4a8;
    --terracotta: #c4785a;
    --olive: #5a6e4a;
    --cream: #faf7f2;
    --pearl: #f5f2ed;
    --charcoal: #2a2a2a;
    --gold: #b8976b;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--sand);
}
::-webkit-scrollbar-thumb {
    background: var(--azure);
    border-radius: 4px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* ==========================================
   NAVIGATION
   ========================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 40px rgba(0,0,0,0.05);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

nav.scrolled .logo {
    color: var(--deep-sea);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

nav.scrolled .nav-links a {
    color: var(--charcoal);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.nav-book {
    background: var(--terracotta);
    padding: 0.6rem 1.2rem;
    color: white !important;
    transition: background 0.3s ease;
}

.nav-links a.nav-book:hover {
    background: var(--deep-sea);
}

.nav-links a.nav-book::after {
    display: none;
}

/* Language Switcher */
.lang-switch {
    margin-left: 1rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255,255,255,0.3);
}

nav.scrolled .lang-switch {
    border-left-color: var(--warm-sand);
}

.lang-switch a {
    font-size: 0.8rem !important;
    letter-spacing: 0.1em !important;
    padding: 0 0.25rem;
}

.lang-switch a.active-lang {
    color: var(--terracotta) !important;
    font-weight: 500;
}

.lang-switch a::after {
    display: none !important;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(13, 61, 77, 0.3) 0%, rgba(13, 61, 77, 0.5) 100%),
        url('images/kormoranos-beach-hotel.webp') center/cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--cream);
    padding: 2rem;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.3s;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.7s;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--cream);
    opacity: 0;
    animation: fadeUp 1s ease forwards 1s;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--cream), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.6); opacity: 0.5; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   SECTIONS - GENERAL
   ========================================== */
section {
    padding: 8rem 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--deep-sea);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    background: var(--pearl);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 2px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--gold);
    z-index: -1;
}

.about-content h2 {
    font-size: 3rem;
    color: var(--deep-sea);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--warm-sand);
}

.about-feature {
    text-align: center;
}

.about-feature-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--terracotta);
    line-height: 1;
}

.about-feature-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* ==========================================
   AMENITIES SECTION
   ========================================== */
.amenities {
    background: var(--deep-sea);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(26, 107, 138, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(196, 120, 90, 0.1) 0%, transparent 40%);
}

.amenities .section-title {
    color: var(--cream);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.amenity-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    transition: all 0.4s ease;
}

.amenity-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.amenity-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    stroke: var(--gold);
}

.amenity-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.amenity-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* ==========================================
   ROOMS SECTION
   ========================================== */
.rooms {
    background: var(--cream);
}

.rooms-showcase {
    max-width: 1400px;
    margin: 0 auto;
}

.room-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.room-card:nth-child(even) {
    direction: rtl;
}

.room-card:nth-child(even) > * {
    direction: ltr;
}

.room-image {
    position: relative;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-content h3 {
    font-size: 2.5rem;
    color: var(--deep-sea);
    margin-bottom: 1.5rem;
}

.room-content p {
    margin-bottom: 2rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.room-feature {
    padding: 0.5rem 1rem;
    background: var(--sand);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* ==========================================
   RESTAURANT SECTION
   ========================================== */
.restaurant {
    background: 
        linear-gradient(rgba(13, 61, 77, 0.85), rgba(13, 61, 77, 0.9)),
        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?q=80&w=2070') center/cover fixed;
    color: var(--cream);
    text-align: center;
}

.restaurant .section-title {
    color: var(--cream);
}

.restaurant-content {
    max-width: 800px;
    margin: 0 auto;
}

.restaurant-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cuisine-tags {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cuisine-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.3);
}

/* ==========================================
   LOCATION SECTION
   ========================================== */
.location {
    background: var(--pearl);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.location-info h3 {
    font-size: 2rem;
    color: var(--deep-sea);
    margin-bottom: 1.5rem;
}

.location-info p {
    margin-bottom: 1.5rem;
}

.attractions {
    margin-top: 3rem;
}

.attraction {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--warm-sand);
}

.attraction-name {
    font-weight: 400;
}

.attraction-distance {
    color: var(--terracotta);
}

.location-map {
    height: 450px;
    position: relative;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 61, 77, 0.95), transparent);
    padding: 1.5rem;
    color: var(--cream);
}

.map-overlay-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.map-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.map-info svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
}

.map-info span {
    font-size: 0.9rem;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--terracotta);
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    background: var(--gold);
}

.directions-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    background: var(--cream);
    text-align: center;
    padding: 5rem 4rem;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 2.5rem;
    color: var(--deep-sea);
    margin-bottom: 1.5rem;
}

.contact-languages {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-languages .lang {
    padding: 0.4rem 1rem;
    background: var(--sand);
    font-size: 0.85rem;
}

/* ==========================================
   BOOKING SECTION
   ========================================== */
.booking {
    background: linear-gradient(135deg, var(--deep-sea) 0%, #0a2f3d 100%);
    padding: 6rem 4rem;
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 90%, rgba(196, 120, 90, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(26, 107, 138, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.booking-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
    position: relative;
}

.booking-info {
    color: var(--cream);
    padding-top: 2rem;
}

.booking-info .section-label {
    color: var(--gold);
}

.booking-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.booking-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.booking-feature svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.booking-feature span {
    font-size: 0.95rem;
}

.booking-info .contact-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.booking-info .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

.booking-info .contact-item svg {
    stroke: var(--gold);
    flex-shrink: 0;
}

/* ==========================================
   BOOKING FORM
   ========================================== */
.booking-form-wrapper {
    position: relative;
}

.booking-form {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 3px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--sand);
}

.form-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-sea);
    margin-bottom: 0.25rem;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.7;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--warm-sand);
    background: var(--pearl);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--azure);
    background: white;
    box-shadow: 0 0 0 3px rgba(26, 107, 138, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232a2a2a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-divider {
    height: 1px;
    background: var(--sand);
    margin: 1.5rem 0;
}

/* Price Summary */
.price-summary {
    background: var(--pearl);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-left: 3px solid var(--terracotta);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.price-row.total {
    border-top: 1px solid var(--warm-sand);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--deep-sea);
}

.price-note {
    font-size: 0.75rem;
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1.1rem 2rem;
    background: var(--terracotta);
    color: white;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: var(--deep-sea);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn .btn-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: flex;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

.spinner circle {
    stroke: white;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    display: none;
    background: var(--cream);
    padding: 3rem 2.5rem;
    text-align: center;
    border-radius: 3px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.success-message.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--olive), #6a7e5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
}

.success-message h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--deep-sea);
    margin-bottom: 1rem;
}

.success-message p {
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.success-message span {
    font-weight: 500;
    color: var(--deep-sea);
}

.booking-reference {
    background: var(--pearl);
    padding: 1rem;
    margin: 1.5rem 0;
    display: inline-block;
}

.booking-reference span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.25rem;
}

.booking-reference strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--terracotta);
    letter-spacing: 0.05em;
}

.new-booking-btn {
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid var(--deep-sea);
    color: var(--deep-sea);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-booking-btn:hover {
    background: var(--deep-sea);
    color: white;
}

/* Form validation styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid {
    border-color: #d9534f;
}

.form-group input:valid:not(:placeholder-shown) {
    border-color: var(--olive);
}

/* ==========================================
   CTA BUTTON
   ========================================== */
.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--terracotta);
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    background: var(--deep-sea);
    transform: translateY(-2px);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 4rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-address {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
}

.social-links svg {
    width: 18px;
    height: 18px;
    stroke: var(--cream);
}

.footer-bottom {
    font-size: 0.8rem;
    opacity: 0.6;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--cream);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

nav.scrolled .hamburger-line {
    background: var(--deep-sea);
}

/* Hamburger Animation */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

@media (max-width: 1024px) {
    section { padding: 5rem 2rem; }
    nav { padding: 1rem 2rem; }
    .about-grid, .location-grid { grid-template-columns: 1fr; gap: 3rem; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .room-card { grid-template-columns: 1fr; gap: 2rem; }
    .room-card:nth-child(even) { direction: ltr; }
    .booking-container { grid-template-columns: 1fr; gap: 3rem; }
    .booking-info { padding-top: 0; text-align: center; }
    .booking-info h2 { font-size: 2.5rem; }
    .booking-features { align-items: center; }
    .booking-info .contact-details { justify-content: center; }
    .booking-info .contact-item { justify-content: center; }
}

@media (max-width: 768px) {
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Mobile Navigation Styles */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, var(--deep-sea) 0%, #0a2f3d 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 80px 20px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 1.25rem 1rem;
        color: var(--cream) !important;
        font-size: 1rem;
        letter-spacing: 0.1em;
    }
    
    .nav-links a:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a.nav-book {
        margin: 1.5rem 1rem;
        padding: 1rem 2rem;
        background: var(--terracotta);
        border-radius: 2px;
    }
    
    .nav-links a.nav-book:hover {
        background: var(--gold);
    }
    
    /* Language switch in mobile */
    .nav-links .lang-switch {
        margin: 0;
        padding: 1.5rem 1rem;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links .lang-switch a {
        display: inline;
        padding: 0.5rem;
    }
    
    /* Mobile menu overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Keep hamburger white when menu is open */
    .mobile-menu-btn.active .hamburger-line {
        background: var(--cream);
    }
    
    /* Other mobile styles */
    .amenities-grid { grid-template-columns: 1fr; }
    .about-features { flex-direction: column; gap: 2rem; }
    .cuisine-tags { flex-direction: column; align-items: center; }
    .form-row { grid-template-columns: 1fr; }
    .booking-form { padding: 1.5rem; }
    .booking { padding: 4rem 1.5rem; }
    
    .about-image img {
        height: 400px;
    }
    
    .room-image img {
        height: 300px;
    }
    
    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .map-overlay-content {
        flex-direction: column;
        text-align: center;
    }
    
    footer {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem 1rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    section {
        padding: 4rem 1rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .booking-info h2 {
        font-size: 2rem;
    }
    
    .about-content h2 {
        font-size: 2.2rem;
    }
    
    .room-content h3 {
        font-size: 2rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
}
