:root {
    --primary-color: #92AEDF; /* The main color */
    --secondary-color: #817AB1; /* For subtle accent */
    --accent-color: #EF3A3A; /* Bold accent and buttons */
    --bg-color: #fdfbf9; /* Clean off-white background */
    --text-main: #333333;
    --text-light: #6b6b6b;
    --white: #ffffff; /* White used sparingly */
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--primary-color);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: var(--transition);
    color: var(--white);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--white);
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--bg-color);
    padding: 20px;
    text-align: center;
    gap: 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('assets/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(146, 174, 223, 0.5), rgba(129, 122, 177, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(239, 58, 58, 0.4);
}

.btn:hover {
    background-color: #d12e2e; /* Slightly darker red for hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 58, 58, 0.6);
}

/* About Section */
.about-section {
    background-color: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background-color: var(--primary-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(43, 76, 59, 0.15);
}

.image-placeholder img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: auto;
    object-fit: contain;
}

/* Offerings Section */
.offerings-section {
    background-color: #f4efe6;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offering-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(43, 76, 59, 0.08);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.offering-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.offering-card p {
    color: var(--text-light);
}

/* Location Section */
.location-section {
    background-color: var(--bg-color);
}

.location-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.location-details {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-details h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.location-details > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.address-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #f4efe6;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.address-box strong {
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
}

.visit-note {
    font-style: italic;
    color: var(--secondary-color);
}

.location-map {
    display: block;
    background: url('assets/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    min-height: 400px;
    cursor: pointer;
}

.location-map::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(43, 76, 59, 0.3);
}

.map-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-logo img {
    height: 30px;
    filter: brightness(0) invert(1);
}

.footer p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .about-grid { gap: 30px; }
    .offerings-grid { grid-template-columns: repeat(2, 1fr); }
    .location-card { grid-template-columns: 1fr; }
    .location-map { min-height: 300px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.2rem; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-image { order: -1; max-width: 400px; margin: 0 auto; }
    .offerings-grid { grid-template-columns: 1fr; }
    .location-details { padding: 40px 20px; }
}

/* Coming Soon Page */
.coming-soon-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 20px;
}

.coming-soon-container {
    max-width: 600px;
    background-color: transparent;
    padding: 50px 30px;
}

.coming-soon-logo {
    max-width: 250px;
    margin-bottom: 30px;
}

.coming-soon-container h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--white);
}

.coming-soon-container p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
