/* Hard Rock Hotel Orlando Styles */

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

:root {
    --rock-red: #ED1C30;
    --rock-black: #1a1a1a;
    --rock-gold: #FFD700;
    --rock-silver: #C0C0C0;
    --rock-gray: #333333;
    --rock-white: #FFFFFF;
    --text-light: #f8f9fa;
    --text-dark: #2c3e50;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--rock-black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--rock-red);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--rock-red);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nav-logo .logo-subtext {
    font-family: 'Rock Salt', cursive;
    font-size: 0.8rem;
    color: var(--rock-gold);
    display: block;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--rock-red);
    text-shadow: 0 0 10px var(--rock-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rock-red), var(--rock-gold));
    transition: width 0.3s ease;
}

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

.cta-link {
    background: linear-gradient(135deg, var(--rock-red), #c41e3a);
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid var(--rock-gold);
    box-shadow: 0 4px 15px rgba(237, 28, 48, 0.3);
}

.cta-link:hover {
    background: linear-gradient(135deg, #c41e3a, var(--rock-red));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 28, 48, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--rock-red);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        var(--rock-black) 0%, 
        #2c1810 25%, 
        var(--rock-red) 50%, 
        #8B0000 75%, 
        var(--rock-black) 100%);
    background-size: 400% 400%;
    animation: rockGradient 10s ease infinite;
}

@keyframes rockGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(237, 28, 48, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    letter-spacing: 3px;
    background: linear-gradient(45deg, var(--rock-red), var(--rock-gold), var(--rock-silver));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rockText 3s ease infinite;
}

@keyframes rockText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rock-red), #c41e3a);
    color: var(--text-light);
    border-color: var(--rock-gold);
    box-shadow: 0 4px 15px rgba(237, 28, 48, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c41e3a, var(--rock-red));
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(237, 28, 48, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--rock-gold);
    border-color: var(--rock-gold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--rock-gold);
    color: var(--rock-black);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--rock-gold);
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--rock-gold);
    border-bottom: 2px solid var(--rock-gold);
    transform: rotate(45deg);
    margin: 10px auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--rock-gray), #2c2c2c);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(237, 28, 48, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    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, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(237, 28, 48, 0.3);
    border-color: var(--rock-red);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.feature-card h3 {
    color: var(--rock-gold);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--rock-red);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Rooms Section */
.rooms {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c1810, var(--rock-black));
    position: relative;
}

.rooms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(237, 28, 48, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.room-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(237, 28, 48, 0.3);
    border-color: var(--rock-red);
}

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

.room-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    transition: transform 0.3s ease;
}

.room-card:hover .room-placeholder {
    transform: scale(1.1);
}

.room-info {
    padding: 2rem;
}

.room-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--rock-gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.room-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.room-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.room-features li {
    color: var(--text-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 20px;
}

.room-features li::before {
    content: '🎸';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.room-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--rock-red);
    text-align: right;
}

/* Amenities Section */
.amenities {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--rock-gray), #2c2c2c);
    position: relative;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(237, 28, 48, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.amenities-content {
    position: relative;
    z-index: 1;
}

.amenity-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.amenity-image {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.amenity-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.amenity-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--rock-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.amenity-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.amenity-features {
    list-style: none;
}

.amenity-features li {
    color: var(--text-light);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 30px;
    transition: all 0.3s ease;
}

.amenity-features li::before {
    content: '🎵';
    position: absolute;
    left: 0;
    top: 0.8rem;
}

.amenity-features li:hover {
    color: var(--rock-gold);
    padding-left: 40px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(237, 28, 48, 0.2);
    border-color: var(--rock-red);
}

.amenity-card h4 {
    font-family: 'Bebas Neue', cursive;
    color: var(--rock-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.amenity-card p {
    color: var(--text-light);
    opacity: 0.9;
}

/* Dining Section */
.dining {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c1810, var(--rock-black));
    position: relative;
}

.dining::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 75%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(237, 28, 48, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.dining-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.restaurant-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.restaurant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(237, 28, 48, 0.3);
    border-color: var(--rock-red);
}

.restaurant-image {
    height: 200px;
    overflow: hidden;
}

.restaurant-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    transition: transform 0.3s ease;
}

.restaurant-card:hover .restaurant-placeholder {
    transform: scale(1.1);
}

.restaurant-info {
    padding: 1.5rem;
}

.restaurant-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--rock-gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.restaurant-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.restaurant-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cuisine {
    background: linear-gradient(135deg, var(--rock-red), #c41e3a);
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.hours {
    color: var(--rock-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Experiences Section */
.experiences {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--rock-gray), #2c2c2c);
    position: relative;
}

.experiences::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 40% 60%, rgba(237, 28, 48, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.experiences-content {
    position: relative;
    z-index: 1;
}

.experience-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.experience-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--rock-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.experience-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.experience-benefits {
    list-style: none;
}

.experience-benefits li {
    color: var(--text-light);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 30px;
    transition: all 0.3s ease;
}

.experience-benefits li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    top: 1rem;
}

.experience-benefits li:hover {
    color: var(--rock-gold);
    padding-left: 40px;
}

.experience-benefits strong {
    color: var(--rock-red);
}

.experience-visual {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.experience-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.music-experience {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.music-experience h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--rock-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.music-experience p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.music-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.music-feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(237, 28, 48, 0.2);
    transition: all 0.3s ease;
}

.music-feature:hover {
    transform: translateY(-5px);
    border-color: var(--rock-red);
    box-shadow: 0 10px 25px rgba(237, 28, 48, 0.2);
}

.music-feature h4 {
    color: var(--rock-red);
    font-family: 'Bebas Neue', cursive;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.music-feature p {
    color: var(--text-light);
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c1810, var(--rock-black));
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(237, 28, 48, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--rock-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.contact-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item strong {
    color: var(--rock-red);
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    opacity: 0.9;
}

.booking-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.booking-form h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--rock-gold);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--rock-gold);
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--rock-red);
    box-shadow: 0 0 10px rgba(237, 28, 48, 0.3);
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--rock-black);
    padding: 60px 0 20px;
    border-top: 3px solid var(--rock-red);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Bebas Neue', cursive;
    color: var(--rock-gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-section ul li a:hover {
    color: var(--rock-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    opacity: 0.7;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .amenity-highlight,
    .experience-highlight,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .rooms-grid,
    .dining-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}