:root {
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --text-main: #ffffff;
    --text-secondary: #d1d1d1;
    --accent-color: #d4af37; /* Gold Accent */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
    color: #fff;
    letter-spacing: -0.5px;
}

p { color: var(--text-secondary); line-height: 1.7; }
a { text-decoration: none; }

/* --- NAVIGATION --- */
.navbar {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0;
}

.navbar-brand { font-weight: 800; letter-spacing: 2px; font-size: 1.5rem; }
.navbar-brand:hover { color: var(--text-main); }
.nav-link { color: #a0a0a0; font-weight: 500; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--accent-color); }

.btn-book-nav {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 0;
    padding: 8px 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.btn-book-nav:hover { background-color: var(--accent-color); color: var(--bg-dark); }

/* --- HERO SECTION (FIXED BACKGROUND) --- */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #000;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    transform: scale(1.1); 
    
    /* --- [INSTRUCTION] HERO IMAGE SETTINGS --- */
    
    /* 1. This linear-gradient makes the image darker so text is readable. */
    /* 2. 'url' points to your image. Ensure your file is named 'hero.jpg' and is in the 'images' folder. */
    
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg');
    
    /* 3. These settings ensure the image covers the whole screen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Fallback color in case image link is broken */
    background-color: #222; 
}

.hero-content { position: relative; z-index: 1; padding: 20px; }
.hero h1 { font-size: 4rem; font-weight: 300; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 5px; }
.hero h1 span { font-weight: 800; color: var(--accent-color); }

/* --- IMAGE UTILITIES --- */
.img-placeholder {
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Use this class for real images to make them fit perfectly */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ratio-portrait { aspect-ratio: 3/4; }
.ratio-landscape { aspect-ratio: 16/9; }
.ratio-square { aspect-ratio: 1/1; }

/* --- PORTFOLIO GRID --- */
.portfolio-item { position: relative; cursor: pointer; overflow: hidden; }
.portfolio-item:hover .img-cover { transform: scale(1.05); }

.portfolio-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h5 {
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: transform 0.3s;
}
.portfolio-item:hover h5 { transform: translateY(0); }

/* --- PACKAGES --- */
.package-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
}
.package-card:hover { transform: translateY(-10px); border-color: var(--accent-color); }
.price-tag { font-size: 2rem; color: var(--accent-color); font-weight: 700; margin: 1rem 0; }
.feature-list li { margin-bottom: 0.8rem; color: var(--text-secondary); font-size: 0.9rem; }
.feature-list i { color: var(--accent-color); margin-right: 10px; }

/* --- ABOUT --- */
.about-text { border-left: 3px solid var(--accent-color); padding-left: 2rem; }

/* --- FORM --- */
.form-control, .form-select {
    background-color: var(--bg-card);
    border: 1px solid #444;
    color: #fff;
    padding: 12px;
    border-radius: 0;
}
.form-control:focus, .form-select:focus { background-color: #252525; border-color: var(--accent-color); color: #fff; box-shadow: none; }
.form-control::placeholder { color: #888; opacity: 1; }
.form-label { color: #aaa; font-weight: 600; letter-spacing: 0.5px; }

.btn-gold {
    background-color: var(--accent-color);
    color: #000;
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s;
}
.btn-gold:hover { background-color: #fff; color: #000; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; letter-spacing: 2px; }
    .about-text { border-left: none; padding-left: 0; border-top: 3px solid var(--accent-color); padding-top: 2rem; }
    .navbar-brand { font-weight: 700; letter-spacing: 1px; font-size: 1rem; }
}