/* Main Design System */
:root {
    --primary: #c37d32;
    /* Copper/Orange */
    --primary-dark: #a06325;
    --secondary: #2c5e7e;
    /* Danube Blue */
    --accent: #5db9e6;
    /* Light Blue */
    --dark: #12151a;
    --light: #f8fafc;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(18, 21, 26, 0.9);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: var(--shadow);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Burger */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    height: 30px;
}

.burger span {
    width: 30px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/hero.webp') no-repeat center center/cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards ease-out 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-5px);
    background: var(--primary-dark);
}

.btn-outline {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    background: transparent;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.welcome-box {
    margin-bottom: 2rem;
}

/* Common Grids */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Feature Row (Alternating Sections) */
.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-row.reveal {
    opacity: 1;
    transform: translateY(0);
}

.feature-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-text {
    flex: 1;
}

.feature-text .tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(195, 125, 50, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Lists & Boxes */
.price-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.price-box li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-weight: 600;
}

.price-box i {
    color: var(--primary);
}

.facility-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.facility-item:hover {
    transform: translateY(-10px);
    background: var(--dark);
    color: var(--white);
}

.facility-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Room Selection (on Index) */
.room-card {
    display: grid;
    grid-template-columns: 400px 1fr 200px;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.room-image {
    height: 100%;
    min-height: 300px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-details {
    padding: 40px;
}

.room-info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.room-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
}

.room-info-item i {
    color: var(--primary);
    width: 20px;
}

.room-action {
    border-left: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Room Page Specific (Mosaic Gallery, Sidebar) */
.room-page-header {
    background: var(--dark);
    padding: 160px 0 80px;
    color: var(--white);
    text-align: center;
}

.room-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 20px;
    margin: 40px 0;
}

.gallery-main {
    grid-row: 1 / 3;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
}

.gallery-main img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-content-wrapper {
    display: block;
    max-width: 1000px;
    margin: 0 auto 80px auto;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    margin-top: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-item i {
    color: var(--primary);
    width: 20px;
}

.pricing-sidebar {
    background: var(--white);
    padding: 30px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 120px;
    height: fit-content;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span:first-child {
    color: #64748b;
}

.price-row span:last-child {
    font-weight: 700;
    color: var(--dark);
}

/* Attractions Card */
.card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
}

.card-img {
    height: 250px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.contact-info {
    background: var(--dark);
    color: var(--white);
    padding: 60px;
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-form {
    padding: 60px;
    background: var(--white);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Footer Styling */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 100px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

.footer-about img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* Media Queries */
@media (max-width: 1200px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-row,
    .feature-row:nth-child(even) {
        flex-direction: column;
        gap: 30px;
    }

    .feature-img {
        height: 300px;
        width: 100%;
    }

    .room-card {
        grid-template-columns: 1fr;
    }

    .room-action {
        border-left: none;
        border-top: 1px solid #f1f5f9;
    }

    .room-content-wrapper {
        grid-template-columns: 1fr;
    }

    .room-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-main {
        grid-row: auto;
        height: 350px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 40px;
    }

    .header-social {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Dropdown */
.nav-active .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(18, 21, 26, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: fadeInDown 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-active .burger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-active .burger span:nth-child(2) {
    opacity: 0;
}

.nav-active .burger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content {
    flex: 1;
}

.cookie-content h4 {
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 1.1rem;
}

.cookie-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 25px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
}

.cookie-btn.accept {
    background: var(--primary);
    color: white;
    border: none;
}

.cookie-btn.accept:hover {
    background: var(--secondary);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--dark);
    border: 1px solid #e2e8f0;
}

.cookie-btn.decline:hover {
    background: #f8fafc;
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        flex-direction: column;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
        gap: 20px;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
}