/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --ihg-navy: #1f4456;
    --ihg-gold: #D4AF37;
    --ihg-gold-light: #E5C76B;
    --ihg-beige: #FAF9F6;
    --ihg-dark: #1A1A1A;
    --ihg-text: #333333;
    --ihg-gray: #757575;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ihg-text);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.playfair {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    background: transparent;
    transition: var(--transition);
    padding: 1.5rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(31, 68, 86, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 60px;
    filter: brightness(0) invert(1);
    /* Make logo white */
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-link:hover {
    color: var(--ihg-gold) !important;
}

.btn-ihg {
    background-color: var(--ihg-navy);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: var(--transition);
}

.btn-ihg:hover {
    background-color: var(--ihg-gold);
    color: var(--ihg-navy) !important;
}

.btn-ihg-outline {
    border: 2px solid var(--ihg-navy);
    color: var(--ihg-navy) !important;
    padding: 8px 20px;
    border-radius: 0;
    font-weight: 600;
    transition: var(--transition);
}

.btn-ihg-outline:hover {
    background-color: var(--ihg-navy);
    color: #fff !important;
}

/* Hero Section */
.hero {
    height: 95vh;
    background: linear-gradient(rgba(31, 68, 86, 0.7), rgba(31, 68, 86, 0.4)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-top: 10rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.bg-beige {
    background-color: var(--ihg-beige);
}

.section-title {
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--ihg-gold);
}

/* Form Styles */
.card-ihg {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 5;
}

.form-label {
    font-weight: 600;
    color: var(--ihg-navy);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 12px;
}

.form-control:focus {
    border-color: var(--ihg-gold);
    box-shadow: none;
}

/* Footer */
footer {
    background-color: var(--ihg-navy);
    color: #fff;
    padding: 60px 0 20px;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

footer a:hover {
    color: var(--ihg-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}