@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;500;600&display=swap');

body { font-family: 'Inter', system-ui, sans-serif; background: #FDF8F3; color: #1F2937; }
.heading { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; letter-spacing: -0.04em; }

#map { 
    height: 560px; 
    border-radius: 2.75rem; 
    border: 1px solid #9F1D1D20;
    box-shadow: 0 10px 30px -10px rgb(159 29 29 / 0.1);
}

.leaflet-popup-content-wrapper {
    border-radius: 16px;
    box-shadow: 0 20px 60px -15px rgb(0 0 0 / 0.3);
}

.attraction-modal {
    animation: modalEnter 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalEnter {
    from { opacity: 0; transform: scale(0.85) translateY(40px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.cinematic-hero { position: relative; height: 100vh; min-height: 680px; overflow: hidden; }
.cinematic-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s cubic-bezier(0.45,0.05,0.05,1); }
.cinematic-slide.active { opacity: 1; }
.cinematic-slide img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 17s ease-in-out infinite alternate; }
@keyframes kenburns { 0% { transform: scale(1) translate(0,0); } 100% { transform: scale(1.14) translate(-2%, 3%); } }
.red-overlay { background: linear-gradient(to bottom, rgba(31,41,55,0.42) 0%, rgba(159,29,29,0.22) 52%, rgba(31,41,55,0.68) 100%); }
.parallax { transition: transform 0.1s ease-out; will-change: transform; }

.amenity-card { transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.amenity-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px -15px rgb(159 29 29 / 0.15); }

.gimg { transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease; }
.gimg:hover { transform: scale(1.025) rotateY(7deg) rotateX(4deg); box-shadow: 0 30px 65px -12px rgb(159 29 29 / 0.25); }

.premium-footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
}

.heading.section-title {
    font-size: 60px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .heading.section-title {
        font-size: 36px;
    }
}
/* --- About & Amenities Section Styling --- */

:root {
    --primary-color: #1a365d;      /* Deep Navy */
    --accent-color: #d69e2e;       /* Warm Gold */
    --text-dark: #2d3748;          /* Charcoal for readability */
    --text-light: #718096;         /* Muted Gray */
    --bg-light: #f7fafc;           /* Soft White/Gray background */
    --white: #ffffff;
}

.about-section {
    padding: 60px 20px;
    background-color: var(--white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.about-section .container {
    max-width:1200px;
    margin: 0 auto;
}

/* Header Styling */
.about-section .section-header {
    text-align: center;
    margin-bottom: 25px;
}

.about-section .section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.about-section .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.about-section .divider {
    border: 0;
    height: 3px;
    background: var(--accent-color);
    width: 80px;
    margin: 0 auto 40px auto;
    border-radius: 2px;
}

/* Body Content */
.about-section .about-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-section .about-content strong {
    color: var(--primary-color);
}

/* Amenities Highlight Box */
.about-section .amenities-highlight {
    background-color: var(--bg-light);
    border-left: 5px solid var(--primary-color);
    padding: 30px;
    margin-top: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.about-section .amenities-highlight h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.about-section .amenities-highlight p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Amenities List Grid */
.about-section .amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.about-section .amenities-list li {
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

/* Custom Checkmark Bullets */
.about-section .amenities-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 15px;
    }
    
    .about-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-section .amenities-highlight {
        padding: 20px;
    }
    
    .about-section .amenities-list {
        grid-template-columns: 1fr;
    }
}
/*==========================
  Attractions Grid
===========================*/

.attractions-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
	width:1200px;
	margin:auto;
}
 .section-title h2{
        font-size: 30px;
		text-align:center;
    }
	.section-title p{
        font-size: 15px;
		text-align:center;
    }
.attraction-item{
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 18px 20px;
    transition: all .3s ease;
}

.attraction-item i{
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    background:#9f1d1d;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

.attraction-item span{
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
}

/* Responsive */

@media (max-width: 768px){

    .attractions-section{
        padding: 60px 0;
    }

    .section-title h2{
        font-size: 30px;
    }

    .section-title p{
        font-size: 15px;
    }

    .attraction-item{
        padding: 16px;
    }

    .attraction-item span{
        font-size: 16px;
    }
}

@media (max-width: 480px){

    .container{
        width: 94%;
    }

    .attractions-grid{
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .attraction-item{
        gap: 15px;
        padding: 15px;
    }

    .attraction-item i{
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 18px;
    }

    .attraction-item span{
        font-size: 15px;
    }
}
.more-text {
  display: none; /* Hides the extra text initially */
}

button {
  background: #900;
  border:#000;
  color: #fff;
  padding:10px;
  cursor: pointer;
  padding: 0;
  font-weight: bold;
  font-size: 1rem;
}