* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #014a3f;
    --dark-gray: #1a1a1a;
    --darker-gray: #0d0d0d;
    --text-light: #e0e0e0;
    --text-white: #ffffff;
    --glass-bg: rgba(1, 74, 63, 0.1);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #014a3f 30%, #0a0a0a 60%, #014a3f 100%);
    background-size: 200% 200%;
    background-attachment: fixed;
    animation: gradientShift 15s ease infinite;
    color: var(--text-light);
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Glass Navigation */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 95%;
    max-width: 1200px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: linear-gradient(135deg, rgba(1, 74, 63, 0.2) 0%, rgba(1, 74, 63, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-nav:hover {
    background: rgba(1, 74, 63, 0.25);
    box-shadow: 0 12px 40px rgba(1, 74, 63, 0.4);
}

@media (min-width: 769px) {
    .glass-nav:hover {
        background: rgba(1, 74, 63, 0.25);
        box-shadow: 0 12px 40px rgba(1, 74, 63, 0.4);
    }
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    position: relative;
}

.nav-links-left,
.nav-links-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links-left {
    justify-content: flex-end;
    margin-right: auto;
}

.nav-links-right {
    justify-content: flex-start;
    margin-left: auto;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 3px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-white);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--text-white);
    transform: translateY(-2px);
}

.logo-container {
    flex-shrink: 0;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.logo {
    height: 180px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
    filter: blur(8px) brightness(0.7);
    transform: scale(1.1);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(1, 74, 63, 0.6) 0%, rgba(1, 74, 63, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 0;
}


.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(1, 74, 63, 0.2) 0%, transparent 50%);
    animation: pulse 6s ease-in-out infinite reverse;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    opacity: 0.3;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(1, 74, 63, 0.4), transparent);
    filter: blur(1px);
}

.element-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation: float1 20s infinite ease-in-out;
}

.element-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation: float2 25s infinite ease-in-out;
}

.element-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 5%;
    animation: float3 18s infinite ease-in-out;
}

.element-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 10%;
    animation: float4 22s infinite ease-in-out;
}

.element-5 {
    width: 70px;
    height: 70px;
    bottom: 30%;
    left: 20%;
    animation: float5 19s infinite ease-in-out;
}

.element-6 {
    width: 90px;
    height: 90px;
    top: 30%;
    right: 30%;
    animation: float6 24s infinite ease-in-out;
}

.element-7 {
    width: 50px;
    height: 50px;
    top: 70%;
    right: 25%;
    animation: float7 16s infinite ease-in-out;
}

.element-8 {
    width: 110px;
    height: 110px;
    bottom: 10%;
    right: 40%;
    animation: float8 21s infinite ease-in-out;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -80px) rotate(90deg); }
    50% { transform: translate(-30px, -120px) rotate(180deg); }
    75% { transform: translate(-50px, -60px) rotate(270deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-60px, 100px) rotate(120deg); }
    66% { transform: translate(40px, 80px) rotate(240deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(80px, -100px) rotate(180deg); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-40px, -60px) rotate(90deg); }
    50% { transform: translate(60px, -40px) rotate(180deg); }
    75% { transform: translate(-20px, 80px) rotate(270deg); }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(70px, -90px) rotate(120deg); }
    66% { transform: translate(-50px, 70px) rotate(240deg); }
}

@keyframes float6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-90px, 110px) rotate(180deg); }
}

@keyframes float7 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -50px) rotate(90deg); }
    50% { transform: translate(-40px, -30px) rotate(180deg); }
    75% { transform: translate(50px, 40px) rotate(270deg); }
}

@keyframes float8 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-80px, -70px) rotate(120deg); }
    66% { transform: translate(90px, -50px) rotate(240deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(1, 74, 63, 0.8), 0 0 60px rgba(1, 74, 63, 0.5);
    letter-spacing: 5px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    cursor: pointer;
    min-width: 220px;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(1, 74, 63, 0.5);
}

.btn-primary:hover {
    background: #016b5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(1, 74, 63, 0.7);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--text-white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin: 0 auto 20px;
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.section-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section */
.about {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(1, 74, 63, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    grid-column: 1;
    grid-row: 1 / 3;
}

.about-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(1, 74, 63, 0.4);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-content .section-title {
    grid-column: 2;
    text-align: left;
}

.about-content .section-text {
    grid-column: 2;
    text-align: left;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(1, 74, 63, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(1, 74, 63, 0.25);
    box-shadow: 0 15px 50px rgba(1, 74, 63, 0.4),
                0 0 30px rgba(1, 74, 63, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 74, 63, 0.1);
    border-radius: 50%;
    padding: 15px;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(1, 74, 63, 0.5));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(1, 74, 63, 0.2);
    box-shadow: 0 0 20px rgba(1, 74, 63, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Menu Section */
.menu-section {
    background: rgba(0, 0, 0, 0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.menu-item {
    background: rgba(1, 74, 63, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.menu-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 74, 63, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover::after {
    opacity: 1;
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(1, 74, 63, 0.4),
                0 0 30px rgba(1, 74, 63, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.menu-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.menu-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 74, 63, 0.4), rgba(26, 26, 26, 0.6));
    z-index: 1;
    transition: opacity 0.3s ease;
}

.menu-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shine 3s infinite;
}

.menu-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(1, 74, 63, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover .menu-image::before {
    opacity: 0.3;
}

.menu-item:hover .menu-image {
    transform: scale(1.1);
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.menu-item h3 {
    padding: 20px;
    font-size: 1.5rem;
    color: var(--text-white);
}

.menu-item p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.menu-cta {
    text-align: center;
    margin-top: 40px;
}

/* Interior Section */
.interior-section {
    padding: 100px 0;
}

.interior-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-gray));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.gallery-image {
    transition: transform 0.4s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 74, 63, 0.3), rgba(26, 26, 26, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 20px 60px rgba(1, 74, 63, 0.6),
                0 0 40px rgba(1, 74, 63, 0.3);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.gallery-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 74, 63, 0.2), rgba(26, 26, 26, 0.4));
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-image::after {
    opacity: 0.5;
}

/* Booking Section */
.booking-section {
    background: rgba(0, 0, 0, 0.3);
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(1, 74, 63, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(1, 74, 63, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

.booking-form > * {
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(1, 74, 63, 0.3);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.booking-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    margin-bottom: 20px;
}

.booking-form button {
    width: 100%;
    margin-top: 10px;
}

/* Contacts Section */
.contacts-section {
    padding: 100px 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

@media (min-width: 1200px) {
    .contacts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-item {
    text-align: center;
    padding: 40px;
    background: rgba(1, 74, 63, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(1, 74, 63, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.contact-item:hover::before {
    width: 300px;
    height: 300px;
}

.contact-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(1, 74, 63, 0.25);
    box-shadow: 0 15px 50px rgba(1, 74, 63, 0.4),
                0 0 30px rgba(1, 74, 63, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 74, 63, 0.1);
    border-radius: 50%;
    padding: 15px;
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(1, 74, 63, 0.5));
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(1, 74, 63, 0.2);
    box-shadow: 0 0 20px rgba(1, 74, 63, 0.4);
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Social Media Section */
.social-section {
    margin-top: 80px;
    text-align: center;
    padding: 60px 0;
    background: rgba(1, 74, 63, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-title {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(1, 74, 63, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(1, 74, 63, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.social-link:hover::before {
    width: 200px;
    height: 200px;
}

.social-link:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(1, 74, 63, 0.25);
    box-shadow: 0 15px 50px rgba(1, 74, 63, 0.4),
                0 0 30px rgba(1, 74, 63, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-link svg,
.social-icon-img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(1, 74, 63, 0.5));
}

.social-icon-img {
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(1, 74, 63, 0.5));
}

.social-link:hover svg {
    transform: scale(1.2) rotate(5deg);
}

.social-link span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.social-link.vk:hover {
    background: rgba(77, 118, 161, 0.3);
    box-shadow: 0 15px 50px rgba(77, 118, 161, 0.4);
}

.social-link.telegram:hover {
    background: rgba(37, 150, 190, 0.3);
    box-shadow: 0 15px 50px rgba(37, 150, 190, 0.4);
}

.social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.3);
    box-shadow: 0 15px 50px rgba(225, 48, 108, 0.4);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-section h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 74, 63, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link svg,
.footer-social-icon-img {
    width: 24px;
    height: 24px;
}

.footer-social-icon-img {
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-social-link:hover {
    background: rgba(1, 74, 63, 0.3);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(1, 74, 63, 0.4);
}

.footer > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 20px;
    text-align: center;
}

/* Cursor trail effect */
.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: rgba(1, 74, 63, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: rgba(1, 74, 63, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 0 0 20px 20px;
    padding: 20px;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .glass-nav {
        width: 95%;
        padding: 8px 15px;
        top: 10px;
        position: fixed;
    }

    .nav-container {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
    }

    .nav-links-left,
    .nav-links-right {
        display: none;
    }

    .nav-link {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .glass-nav {
        position: fixed !important;
    }

    .logo-container {
        order: -1;
        width: 100%;
        text-align: center;
        padding: 0;
        margin-bottom: 5px;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }

    .logo {
        height: 100px;
    }

    .hero {
        padding-top: 140px;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
        gap: 15px;
    }

    .btn {
        width: 100%;
        padding: 12px 30px;
        font-size: 14px;
        min-width: auto;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .section-text {
        font-size: 1rem;
        padding: 0 10px;
        line-height: 1.6;
    }

    section {
        padding: 60px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .booking-form {
        padding: 30px 20px;
    }

    .features-grid,
    .menu-grid,
    .interior-gallery,
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card,
    .menu-item,
    .contact-item {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        padding: 12px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        padding: 12px;
    }

    .feature-card h3,
    .menu-item h3,
    .contact-item h3 {
        font-size: 1.3rem;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
        padding: 10px;
    }

    .menu-image {
        height: 200px;
    }

    .gallery-item {
        aspect-ratio: 16/9;
    }

    .footer {
        padding: 30px 0;
    }

    .footer p {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        padding: 0 15px;
    }

    .scroll-indicator {
        display: none;
    }

    .floating-elements {
        display: none;
    }

    .section-title::after {
        width: 60px;
        height: 2px;
    }

    .social-section {
        margin-top: 60px;
        padding: 40px 20px;
    }

    .social-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .social-links {
        gap: 20px;
    }

    .social-link {
        width: 100px;
        height: 100px;
    }

    .social-link svg {
        width: 35px;
        height: 35px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-social {
        justify-content: center;
    }

    .hero-content {
        padding: 0 15px;
    }

    .about-content {
        padding: 0 10px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        grid-column: 1;
        grid-row: 1;
    }

    .about-content .section-title,
    .about-content .section-text {
        grid-column: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .glass-nav {
        width: 98%;
        padding: 6px 10px;
        top: 5px;
        border-radius: 20px;
    }

    .logo {
        height: 80px;
    }

    .hero {
        padding-top: 120px;
        min-height: 85vh;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-text {
        font-size: 0.95rem;
    }

    section {
        padding: 50px 0;
    }

    .container {
        padding: 0 15px;
    }

    .feature-card,
    .menu-item,
    .contact-item {
        padding: 25px 15px;
    }

    .feature-card h3,
    .menu-item h3,
    .contact-item h3 {
        font-size: 1.2rem;
    }

    .feature-card p,
    .menu-item p,
    .contact-item p {
        font-size: 0.9rem;
    }

    .booking-form {
        padding: 25px 15px;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        padding: 12px;
        font-size: 14px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 13px;
    }

    .mobile-nav-link {
        font-size: 14px;
        padding: 10px 0;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
    }

    .social-link {
        width: 90px;
        height: 90px;
    }

    .social-link svg {
        width: 30px;
        height: 30px;
    }

    .social-link span {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .logo {
        height: 70px;
    }

    .glass-nav {
        width: 100%;
        border-radius: 0;
        top: 0;
    }

    .mobile-menu {
        border-radius: 0;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .logo {
        height: 75px;
    }
}

