/* --- RESET & VARIABLES --- */
:root {
    --primary-color: #d4af37; /* Gold for Luxury */
    --secondary-color: #1a1a1a; /* Almost Black */
    --text-color: #555;
    --light-bg: #f9f9f9;
    --white: #fff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    display: block;
}

/* --- REUSABLE CLASSES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.section-title .line {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto;
}

/* --- BUTTONS --- */
.btn-nav, .btn-primary, .btn-secondary {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-nav {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
}

.btn-nav:hover {
    background: #b5952f;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    width: 100%;
    border-radius: 4px;
}

.btn-primary:hover {
    background: #b5952f;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    margin-top: 15px;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--secondary-color);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn-nav) {
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:not(.btn-nav):hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 900px;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* --- BOOKING WIDGET --- */
.booking-bar {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.input-group {
    flex: 1;
    text-align: left;
    min-width: 150px;
}

.input-group label {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
}

.booking-bar .btn-primary {
    flex: 1;
    min-width: 150px;
    height: 42px; /* Match input height */
}

/* --- ABOUT SECTION --- */
.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* --- HOTELS CARD GRID --- */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.hotel-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.hotel-card:hover {
    transform: translateY(-10px);
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hotel-card:hover .card-image img {
    transform: scale(1.1);
}

.card-details {
    padding: 25px;
}

.card-details h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.card-details .location {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.card-details .desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #666;
}

.features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #888;
}

/* --- AMENITIES --- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.amenity-box {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.3s;
}

.amenity-box:hover {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.amenity-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.amenity-box h4 {
    font-size: 1rem;
    font-weight: 600;
}

/* --- FOOTER --- */
footer {
    background: var(--secondary-color);
    color: #bbb;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-col i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.socials a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
    transition: 0.3s;
}

.socials a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    background: #111;
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide nav on mobile for simplicity in this demo */
    }
    
    .hamburger {
        display: block;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .booking-bar {
        flex-direction: column;
    }

    .input-group, .btn-primary {
        width: 100%;
    }
}
.add{
    justify-content: center;
    align-items: center;
}
.footer-col {
    display: flex;
    flex-direction: column;     /* stack items vertically */
    align-items: flex-start;    /* align everything to the left in one line */
    justify-content: center;    /* center vertically inside the footer row */
    gap: 10px;                  /* spacing between items */
}

.footer-col p, 
.footer-col h3 {
    margin: 0;
    line-height: 1.6;
}

.footer-col i {
    margin-right: 8px;          /* space between icon and text */
}
