/* --- Variables & Brand Colors --- */
:root {
    /* Your logo gradient colors */
    --brand-blue: #2cf2ff;
    --brand-purple: #a827ff;
    --brand-gradient: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
    
    /* Neutral colors for the light theme */
    --text-main: #1a1a1a;
    --text-light: #555555;
    --bg-white: #ffffff;
    --bg-light-grey: #f8f9fa;
    --border-color: #e5e5e5;
}

/* --- Global Reset & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation --- */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 80px; /* Adjust based on your logo size */
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--brand-purple); /* Subtle nod to brand color */
}

/* --- Buttons --- */
.btn-gradient {
    background: var(--brand-gradient);
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(168, 39, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    padding: 10px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border: 2px solid var(--text-main);
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: var(--text-main);
    color: white;
}

.btn-text {
    color: var(--brand-purple);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

/* --- Hero Section --- */
.hero {
    background-color: var(--bg-light-grey);
    padding: 100px 20px;
    text-align: center;
    /* Later, we can add a subtle background pattern or image here */
}

.hero h1 {
    font-size: 3.5rem;
    max-width: 800px;
    margin: 0 auto 20px auto;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* --- Section Styling --- */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 80px;
}

.section-title h2 {
    font-size: 2.5rem;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* --- Value Prop Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 80px;
}

.feature-card {
    background: var(--bg-white);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.feature-card h3 {
    margin-bottom: 15px;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Makes the text gradient */
}

/* --- Featured Packages --- */
.featured-packages {
    background-color: var(--bg-light-grey);
    padding-bottom: 80px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.package-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.placeholder-img {
    height: 250px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.package-info {
    padding: 30px;
}

.package-info h3 {
    font-size: 1.5rem;
}

.package-info .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.center-btn {
    text-align: center;
}

/* --- Footer --- */
footer {
    background-color: var(--text-main);
    color: white;
    padding: 60px 20px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: white;
}

.footer-brand p, .footer-contact p {
    color: #cccccc;
}

.footer-contact h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #888;
    font-size: 0.9rem;
}
/* --- Additional Styles for New Pages --- */
.page-header {
    background-color: var(--bg-light-grey);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5rem;
}

.delivery-notice {
    background-color: #e8faff;
    border-left: 4px solid var(--brand-blue);
    padding: 15px 20px;
    margin: 40px auto 10px auto;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    color: var(--text-main);
}

.package-info ul {
    list-style-position: inside;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.package-info ul li {
    margin-bottom: 6px;
}
/* --- Gallery Page Styles --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    width: 100%;
    height: 300px;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Specific styling for the placeholder text inside the gallery so it matches */
.gallery-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}
/* --- Contact & Form Styles --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.info-block {
    margin-bottom: 20px;
}

.info-block a {
    color: var(--brand-purple);
    text-decoration: none;
    font-weight: 500;
}

.booking-form-container {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-purple);
    box-shadow: 0 0 0 3px rgba(168, 39, 255, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
    width: 18px;
    height: 18px;
}