/* CSS Custom Properties */
:root {
    --primary-color: #3c8d40;
    --secondary-color: #3abc40;
    --accent-color: #37d48d;
    --text-dark: #2c3e50;
    --text-light: #666;
    --white: #ffffff;
    --background-light: #fafafa;
    --background-gradient: linear-gradient(135deg, #fafafa 0%, #f5f7fa 100%);
    --shadow-light: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-medium: 0 8px 25px rgba(0,0,0,0.15);
    --shadow-heavy: 0 15px 40px rgba(0,0,0,0.2);
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255,255,255,0.9);
    --glass-border: rgba(255,255,255,0.3);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2c3e50;
}

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

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.95));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(125, 109, 93, 0.02), rgba(168, 153, 138, 0.02));
    pointer-events: none;
}

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

.logo-container {
    flex: 0 0 auto;
}

.logo {
    height: 55px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 25px rgba(125, 109, 93, 0.3);
}

.logo::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3c8d40, #3abc40, #3c8d40);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo:hover::after {
    opacity: 0.3;
}

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

.nav-link {
    text-decoration: none;
    color: #4c4c4c;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #3c8d40;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3c8d40, #3abc40);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #4c4c4c;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(125, 109, 93, 0.3)), url('images/castlerock.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
    min-height: 500px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(125, 109, 93, 0.2) 100%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.02), transparent);
    animation: shimmer 10s linear infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.3);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 2px 10px rgba(0,0,0,0.3);
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3c8d40, #3abc40);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(125, 109, 93, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(125, 109, 93, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(125, 109, 93, 0.5), 0 0 30px rgba(125, 109, 93, 0.2);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(125, 109, 93, 0.5);
    background: linear-gradient(135deg, #8a7863, #37d48);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #3c8d40, #3abc40);
    color: white;
    text-align: center;
    padding: 80px 0 50px;
    margin-top: 70px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.2);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Virtual Tour Section */
.virtual-tour-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(125, 109, 93, 0.02), rgba(168, 153, 138, 0.02));
}

.virtual-tour-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.virtual-tour-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.tour-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.tour-actions .secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    color: #3c8d40;
    border: 2px solid #3c8d40;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.tour-actions .secondary-button:hover {
    background: #3c8d40;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 109, 93, 0.3);
}

@media (max-width: 768px) {
    .virtual-tour-section {
        padding: 60px 0;
    }

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

    .tour-actions {
        flex-direction: column;
        align-items: center;
    }

    .tour-actions .secondary-button {
        width: 100%;
        max-width: 250px;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,249,250,0.9));
    backdrop-filter: blur(10px);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3c8d40, #3abc40, #3c8d40);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 60px rgba(125, 109, 93, 0.2);
    border-color: rgba(125, 109, 93, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #3c8d40;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 3rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(125, 109, 93, 0.1), rgba(168, 153, 138, 0.1));
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.feature-card:hover .feature-icon::before {
    transform: translate(-50%, -50%) scale(1);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1) rotate(5deg);
    color: #3c8d40;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #3c8d40;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(125, 109, 93, 0.05), rgba(168, 153, 138, 0.05));
}

.welcome-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.welcome-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #3c8d40;
    padding: 15px 35px;
    text-decoration: none;
    border: 2px solid #3c8d40;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #3c8d40;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 109, 93, 0.3);
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-text h3 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #3c8d40;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-image .image-placeholder {
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-style: italic;
}

.values-section {
    margin-top: 80px;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #3c8d40;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #3c8d40;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Rooms Page Styles */
.rooms-section {
    padding: 80px 0;
}

.room-categories-section {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 2px solid rgba(125, 109, 93, 0.1);
}

.room-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.room-type-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.95));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(125, 109, 93, 0.1);
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    flex-direction: column;
}

.room-type-card .room-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3c8d40, #3abc40);
}

.room-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(125, 109, 93, 0.15);
}

.room-type-card .room-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.room-type-card .room-type-subtitle {
    color: #3c8d40;
    font-size: 1rem;
    margin-bottom: 25px;
    font-style: italic;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.features-list li i {
    color: #3c8d40;
    width: 16px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.room-category-images {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(125, 109, 93, 0.2);
}

.images-title {
    text-align: center;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
}

.category-images-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.category-image-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(125, 109, 93, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.category-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(125, 109, 93, 0.2);
}

.category-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

.category-image-card:hover .category-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(125, 109, 93, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.category-image-card:hover .category-image::before {
    opacity: 1;
}

.category-image-info {
    padding: 20px;
    text-align: center;
}

.category-image-info h4 {
    color: #3c8d40;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.category-image-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.room-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,250,0.95));
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(125, 109, 93, 0.02), rgba(168, 153, 138, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.room-card:hover::before {
    opacity: 1;
}

.room-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(125, 109, 93, 0.2);
}

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

.room-image .image-placeholder {
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    position: relative;
}

.room-image .image-placeholder::before {
    content: '📷';
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
    opacity: 0.5;
}

/* Image loading and error handling */
.room-img {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.room-img:not([src]),
.room-img[src=""],
.room-img[src*="placeholder"] {
    display: none;
}

.room-img:not([src]) + .image-placeholder,
.room-img[src=""] + .image-placeholder,
.room-img[src*="placeholder"] + .image-placeholder {
    display: flex;
}

.room-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    display: block;
    min-height: 250px;
    max-height: 400px;
}

.room-card:hover .room-img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.room-image {
    height: auto;
    min-height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 24px 24px 0 0;
    background: #f8f9fa;
    flex: 0 0 auto;
}

.room-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(125, 109, 93, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.room-card:hover .room-image::before {
    opacity: 1;
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.room-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3c8d40;
    margin-bottom: 15px;
}

.room-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.room-amenities {
    list-style: none;
    margin-bottom: 25px;
}

.room-amenities li {
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-amenities li i {
    color: #3c8d40;
    width: 16px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.room-button {
    display: inline-block;
    background: linear-gradient(135deg, #3c8d40, #3abc40);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.room-button:hover {
    background: linear-gradient(135deg, #8a7863, #37d48);
    transform: translateY(-2px);
}

.book-now-section {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
}

.book-now-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3c8d40, #3abc40);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(125, 109, 93, 0.3);
}

.book-now-btn:hover {
    background: linear-gradient(135deg, #8a7863, #37d48);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(125, 109, 93, 0.4);
}

.book-now-btn i {
    margin-right: 8px;
}

/* Room rates table styles */
.room-rates-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.rates-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    background: linear-gradient(135deg, #3c8d40, #3abc40);
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 15px 0;
}

.room-column,
.single-column,
.double-column,
.breakfast-column {
    padding: 10px;
    border-right: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    line-height: 1.3;
}

.breakfast-column {
    border-right: none;
}

.room-category {
    border-bottom: 1px solid #e8e8e8;
}

.room-category:last-child {
    border-bottom: none;
}

.category-title {
    background: linear-gradient(135deg, rgba(125, 109, 93, 0.1), rgba(168, 153, 138, 0.1));
    color: #3c8d40;
    padding: 15px 20px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(125, 109, 93, 0.2);
}

.room-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.room-row:hover {
    background: rgba(125, 109, 93, 0.02);
}

.room-row:last-child {
    border-bottom: none;
}

.room-name {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.room-name .rock-icon-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    background: white;
    padding: 2px;
    flex-shrink: 0;
}

.room-name .rock-icon-img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(125, 109, 93, 0.3);
}

.room-name .rock-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.room-name .rock-icon-img:hover .rock-image {
    transform: scale(1.05);
}

.rock-icon {
    font-size: 1.5rem;
}

.room-name {
    padding: 0 20px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
}

.single-price,
.double-price,
.breakfast-price {
    text-align: center;
    padding: 0 10px;
    font-weight: 600;
    color: #3c8d40;
    font-size: 0.9rem;
    line-height: 1.3;
}

.breakfast-price {
    font-size: 0.8rem;
    color: #666;
}

/* Room pricing styles */
.room-pricing {
    background: linear-gradient(135deg, rgba(125, 109, 93, 0.05), rgba(168, 153, 138, 0.05));
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 3px solid #3c8d40;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price-row:last-child {
    margin-bottom: 0;
}

.occupancy-type {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.room-pricing .price {
    font-weight: 700;
    color: #3c8d40;
    font-size: 1rem;
}

.rooms-info {
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.rooms-info h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.included-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.amenity-icon {
    font-size: 1.2rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3c8d40, #3abc40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #3c8d40;
}

.contact-text p {
    color: #666;
    line-height: 1.5;
    margin: 2px 0;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4c4c4c;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3c8d40;
    box-shadow: 0 0 0 3px rgba(125, 109, 93, 0.1);
}

.submit-button {
    background: linear-gradient(135deg, #3c8d40, #3abc40);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: linear-gradient(135deg, #8a7863, #37d48);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 109, 93, 0.3);
}

.map-section {
    margin-top: 60px;
}

.map-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.map-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-info {
    margin-top: 25px;
    text-align: center;
}

.map-info p {
    margin: 10px 0;
    color: #666;
    font-size: 16px;
}

.map-info i {
    color: #3c8d40;
    margin-right: 8px;
    width: 20px;
}

.directions-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3c8d40, #3abc40);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(125, 109, 93, 0.3);
}

.directions-btn:hover {
    background: linear-gradient(135deg, #8a7863, #37d48);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 109, 93, 0.4);
}

.directions-btn i {
    margin-right: 8px;
}

.map-placeholder {
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    height: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-style: italic;
    text-align: center;
    padding: 40px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e, #2c3e50);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 109, 93, 0.5), transparent);
}

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

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #3abc40;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3abc40;
}

.footer-logo {
    height: 75px;
    width: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(255,255,255,0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 40px 0;
        backdrop-filter: blur(10px);
    }

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

    .hero {
        height: 100vh;
        min-height: 600px;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .room-types-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .room-type-card {
        min-height: auto;
    }

    .room-image {
        height: auto;
        min-height: 200px;
    }

    .room-img {
        min-height: 200px;
        max-height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .included-amenities {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .category-images-grid {
        flex-direction: column;
        align-items: center;
    }

    .category-image-card {
        max-width: 100%;
        width: 100%;
    }

    .rates-header,
    .room-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .rates-header {
        display: none;
    }

    .room-row {
        display: block;
        padding: 15px;
        border: 1px solid #e8e8e8;
        margin-bottom: 10px;
        border-radius: 8px;
    }

    .room-name {
        padding: 0 0 10px 0;
        font-size: 1rem;
        font-weight: 600;
    }

    .single-price,
    .double-price,
    .breakfast-price {
        display: block;
        text-align: left;
        padding: 5px 0;
    }

    .single-price::before {
        content: "Single Occupancy: ";
        font-weight: normal;
        color: #666;
    }

    .double-price::before {
        content: "Double Occupancy: ";
        font-weight: normal;
        color: #666;
    }

    .breakfast-price::before {
        content: "Breakfast: ";
        font-weight: normal;
        color: #666;
    }

    .container {
        padding: 0 15px;
    }

    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 500px;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

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

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

    .feature-card,
    .room-card {
        margin: 0 10px;
    }

    .navbar {
        padding: 6px 15px;
    }

    .logo {
        height: 48px;
    }
}

/* Smooth animations */
.feature-card,
.room-card,
.value-card,
.nav-link,
.cta-button,
.secondary-button,
.room-button,
.submit-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section entrance animations */
.features,
.welcome-section,
.about-content,
.rooms-section,
.contact-section {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-grid .feature-card:nth-child(1) { animation-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { animation-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { animation-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { animation-delay: 0.4s; }

/* Stagger animations for cards */
.feature-card,
.room-card,
.value-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Loading states */
.image-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 2s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Gallery Page Styles */
.gallery-section {
    padding: 80px 0;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-intro h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.gallery-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.gallery-category-section {
    margin-bottom: 80px;
}

.category-title {
    font-size: 2rem;
    color: #3c8d40;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: center;
    justify-content: center;
}

.category-title i {
    color: #3abc40;
    font-size: 1.8rem;
}

.category-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(125, 109, 93, 0.2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.gallery-item .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-style: italic;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    text-align: center;
}

.gallery-item .image-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.gallery-item .image-placeholder p {
    font-size: 1rem;
    font-weight: 500;
}

.gallery-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(125, 109, 93, 0.05), rgba(168, 153, 138, 0.05));
    border-radius: 20px;
}

.gallery-cta h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.gallery-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6
}

/* Video Section Styles */
.video-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(125, 109, 93, 0.2);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.video-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: white;
}

.video-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Video Styles */
@media (max-width: 768px) {
    .video-wrapper {
        border-radius: 10px;
    }

    .video-wrapper video {
        border-radius: 10px;
    }

    .video-overlay {
        padding: 20px 15px 15px;
    }

    .video-overlay h4 {
        font-size: 1.1rem;
    }

    .video-overlay p {
        font-size: 0.9rem;
    }
};


.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button,
.cta-buttons .secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 150px;
    justify-content: center;
}

/* Responsive Gallery Styles */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.gallery-category {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,249,250,0.9));
    border-radius: 15px;
    border: 1px solid rgba(125, 109, 93, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.gallery-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, rgba(125, 109, 93, 0.05), rgba(168, 153, 138, 0.05));
}

.gallery-category h4 {
    color: #3c8d40;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.view-gallery-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #3c8d40, #3abc40);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gallery-category:hover .view-gallery-btn {
    background: linear-gradient(135deg, #6b5a4f, #968679);
    transform: scale(1.05);
}
    flex-direction: column;
        gap: 10px;
    }

    .gallery-intro h2 {
        font-size: 2rem;
    }

    .gallery-cta {
        padding: 40px 20px;
        margin-top: 60px;
    }

    .gallery-cta h2 {
        font-size: 2rem;
    }

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

    .cta-buttons .cta-button,
    .cta-buttons .secondary-button {
        width: 100%;
        max-width: 250px;
    }


@media (max-width: 480px) {
    .gallery-item {
        aspect-ratio: 3/2;
    }

    .gallery-overlay {
        padding: 20px 15px 15px;
    }

    .gallery-overlay h4 {
        font-size: 1rem;
    }

    .gallery-overlay p {
        font-size: 0.8rem;
    }
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.signature-rooms-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--accent-color);
}

.theme-description {
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: center;
    margin: 1.5rem 0;
    line-height: 1.6;
}

.rock-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.rock-room-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.rock-room-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.rock-room-header {
    text-align: center;
    margin-bottom: 1rem;
}

.rock-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.rock-icon-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    background: white;
    padding: 5px;
}

.rock-icon-img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(125, 109, 93, 0.3);
}

.rock-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.rock-icon-img:hover .rock-image {
    transform: scale(1.05);
}

.rock-room-card h3 {
    color: var(--primary-color);
    margin: 0.5rem 0 0.25rem 0;
    font-size: 1.4rem;
}

.rock-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rock-room-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.choose-gem-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.choose-gem-section h3 {
    color: #3c8d40;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.gallery-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #3c8d40;
}

.gallery-section .section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.1rem;
}

.gallery-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.gallery-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(125, 109, 93, 0.1);
}

.gallery-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(125, 109, 93, 0.2);
}

.gallery-category h4 {
    color: #3c8d40;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gallery-category i {
    color: #3abc40;
    font-size: 1.3rem;
}

.gallery-category p {
    color: #666;
    line-height: 1.6;
}

.room-notes {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: var(--accent-color);
    color: white;
    border-radius: 8px;
}

.amenities-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.amenity-item span {
    font-weight: 500;
    color: var(--text-color);
}

/* About page image styling */
.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
    max-width: 100%;
}

.about-image {
    width: 100%;
    height: 400px;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25d366, #20c997);
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite, pulse 2s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.whatsapp-float i {
    font-size: 28px;
    line-height: 1;
}

.whatsapp-float:hover {
    background-color: #1fcc5a;
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Social media buttons */
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.social-btn {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.twitter { background: #1da1f2; }
.social-btn.tiktok { background: #000000; }
.social-btn.linkedin { background: #0077b5; }

.social-btn i {
    font-size: 18px;
    line-height: 50px;
}

/* Book online button */
.book-online-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    margin: 10px;
}

.book-online-btn:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

/* Pay online button */
.pay-online-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    margin: 10px;
}

.pay-online-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

/* Contact buttons section */
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-btn.phone {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.contact-btn.whatsapp {
    background: #25d366;
    color: white;
}

.contact-btn.email {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Booking form styles */
.booking-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.booking-form h3 {
    color: #3c8d40;
    margin-bottom: 20px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

/* Booking Page Styles */
.booking-section {
    padding: 80px 0;
}

.rates-section {
    margin-bottom: 60px;
}

.rates-grid {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.rate-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.rate-category h3 {
    color: #3c8d40;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
    border-bottom: 2px solid #3c8d40;
    padding-bottom: 10px;
}

.rooms-list {
    display: grid;
    gap: 20px;
}

.room-rate-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(125, 109, 93, 0.05), rgba(168, 153, 138, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(125, 109, 93, 0.1);
    transition: all 0.3s ease;
}

.room-rate-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 109, 93, 0.15);
}

.room-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.room-name .rock-icon {
    font-size: 1.5rem;
}

.room-name h4 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.1rem;
}

.pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-width: 220px;
}

.occupancy {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.price {
    font-weight: 700;
    color: #3c8d40;
    font-size: 1.1rem;
}

.breakfast-note {
    background: linear-gradient(135deg, #3c8d40, #3abc40);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

.breakfast-note i {
    margin-right: 8px;
}

.booking-form-section {
    background: linear-gradient(135deg, rgba(125, 109, 93, 0.02), rgba(168, 153, 138, 0.02));
    padding: 40px;
    border-radius: 20px;
}

.booking-summary {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #3c8d40;
}

.booking-summary h3 {
    color: #3c8d40;
    margin-bottom: 20px;
    text-align: center;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(125, 109, 93, 0.1);
}

.summary-item.total {
    border-top: 2px solid #3c8d40;
    border-bottom: none;
    margin-top: 10px;
    padding-top: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #3c8d40;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.whatsapp-book-btn {
    background: linear-gradient(135deg, #25d366, #20c997);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    min-width: 180px;
    justify-content: center;
}

.whatsapp-book-btn:hover {
    background: linear-gradient(135deg, #1fcc5a, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.pay-now-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    min-width: 180px;
    justify-content: center;
}

.pay-now-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

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

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 30px;
        right: 30px;
        font-size: 25px;
    }

    .room-rate-card {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .price-option {
        justify-content: center;
        min-width: auto;
    }

    .form-actions {
        flex-direction: column;
        align-items: center;
    }

    .whatsapp-book-btn,
    .pay-now-btn {
        width: 100%;
        max-width: 300px;
    }

    .booking-form-section {
        padding: 20px;
    }
}