/* Suum Bodrum - Premium Boutique Hotel */
/* Adult Only +16 Concept */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* Elegant Earth Tones */
    --primary-color: #4a3f35;
    --secondary-color: #8b7355;
    --accent-color: #c9a87c;
    --dark-bg: #2c2620;
    --light-bg: #f5f0eb;
    --cream: #faf8f5;
    --text-dark: #2c2620;
    --text-light: #f5f0eb;
    --gold: #c9a87c;
    --olive: #6b7b5c;
    --sand: #d4c5b5;
    --white: #ffffff;
    --shadow: rgba(44, 38, 32, 0.15);
    --shadow-dark: rgba(44, 38, 32, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 { font-size: 3.5rem; letter-spacing: 0.15em; }
h2 { font-size: 2.8rem; letter-spacing: 0.1em; }
h3 { font-size: 2rem; letter-spacing: 0.08em; }
h4 { font-size: 1.5rem; }

p {
    font-weight: 300;
    color: #5a5048;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--gold);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    margin-left: 8px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.adult-badge {
    background: linear-gradient(135deg, var(--gold), var(--secondary-color));
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* ========== HEADER ========== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 30px var(--shadow);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
}

.logo img {
    height: 70px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.3em;
}

.logo-text span {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    color: var(--secondary-color);
    font-weight: 400;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    padding: 10px 5px;
    position: relative;
    white-space: nowrap;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

.header-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 124, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--secondary-color));
    color: var(--white);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 168, 124, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-lg {
    padding: 18px 45px;
    font-size: 0.95rem;
}

/* ========== MOBILE MENU ========== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Mobile Nav Active */
.main-nav.active {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    z-index: 1000;
}

.main-nav.active ul {
    flex-direction: column;
    gap: 0;
}

.main-nav.active li {
    border-bottom: 1px solid var(--sand);
}

.main-nav.active li:last-child {
    border-bottom: none;
}

.main-nav.active a {
    display: block;
    padding: 15px 10px;
    font-size: 0.9rem;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(44, 38, 32, 0.3) 0%,
        rgba(44, 38, 32, 0.5) 50%,
        rgba(44, 38, 32, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 40px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 124, 0.9);
    color: var(--white);
    padding: 10px 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.2em;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    letter-spacing: 0.1em;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--white);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-down span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========== PAGE HERO ========== */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    opacity: 0.7;
}

/* ========== SECTION STYLES ========== */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--light-bg);
}

.section-dark {
    background: var(--dark-bg);
    color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255,255,255,0.8);
}

.section-cream {
    background: var(--cream);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-label::before {
    right: calc(100% + 15px);
}

.section-label::after {
    left: calc(100% + 15px);
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
}

/* ========== INTRO SECTION ========== */
.intro-section {
    padding: 120px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--gold);
    z-index: -1;
}

.intro-content {
    padding: 20px 0;
}

.intro-content .section-label {
    text-align: left;
}

.intro-content .section-label::before {
    display: none;
}

.intro-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.intro-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.intro-feature i {
    font-size: 1.5rem;
    color: var(--gold);
}

.intro-feature span {
    font-weight: 500;
}

/* ========== ROOMS SECTION ========== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.4s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-dark);
}

.room-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.room-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.room-features i {
    color: var(--gold);
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--sand);
}

.room-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.room-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--secondary-color);
}

/* ========== FEATURES SECTION ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--secondary-color));
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
}

/* ========== RESTAURANTS SECTION ========== */
.restaurant-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.restaurant-showcase:nth-child(even) {
    direction: rtl;
}

.restaurant-showcase:nth-child(even) > * {
    direction: ltr;
}

.restaurant-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.restaurant-showcase:hover .restaurant-image img {
    transform: scale(1.05);
}

.restaurant-content {
    padding: 40px;
}

.restaurant-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.restaurant-content p {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.restaurant-hours {
    background: var(--light-bg);
    padding: 25px;
    margin: 30px 0;
}

.restaurant-hours h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--gold);
}

.restaurant-hours p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

/* ========== SPA SECTION ========== */
.spa-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.spa-image {
    position: relative;
}

.spa-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.spa-content h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.spa-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.spa-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.spa-service {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.4s ease;
}

.spa-service:hover {
    transform: translateY(-8px);
}

.spa-service i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.spa-service h4 {
    margin-bottom: 15px;
}

/* ========== BEACH & POOL SECTION ========== */
.beach-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.beach-item {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.beach-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

.beach-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.beach-item:hover img {
    transform: scale(1.1);
}

.beach-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(44, 38, 32, 0.9), transparent);
    color: var(--white);
}

.beach-overlay h4 {
    color: var(--white);
    margin-bottom: 5px;
}

/* ========== WEDDING SECTION ========== */
.wedding-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.wedding-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wedding-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 40px;
}

.wedding-content h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.wedding-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.wedding-service {
    text-align: center;
    padding: 50px 30px;
    background: var(--white);
    box-shadow: 0 15px 50px var(--shadow);
}

.wedding-service i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.wedding-service h4 {
    margin-bottom: 15px;
}

/* ========== CONTACT SECTION ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-info-card i {
    font-size: 1.5rem;
    color: var(--gold);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
}

.contact-info-card h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-info-card p,
.contact-info-card a {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.contact-info-card a:hover {
    color: var(--gold);
}

.contact-map {
    height: 100%;
    min-height: 500px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== RESERVATION FORM ========== */
.reservation-section {
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-color));
    padding: 80px 0;
}

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--sand);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 124, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 25px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-widget h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--gold);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 38, 32, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--white);
}

/* ========== LEGAL PAGES ========== */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-content h1 {
    margin-bottom: 40px;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 10px;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header .container {
        position: relative;
    }
    
    .header-cta {
        margin-right: 50px;
    }
    
    .intro-grid,
    .restaurant-showcase,
    .spa-intro,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .restaurant-showcase:nth-child(even) {
        direction: ltr;
    }
    
    .wedding-services {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .header .container {
        padding: 15px 20px;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .rooms-grid,
    .features-grid,
    .spa-services,
    .wedding-services,
    .beach-gallery {
        grid-template-columns: 1fr;
    }
    
    .beach-item.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 350px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .reservation-form {
        padding: 40px 25px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-image::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
}
