:root {
    --primary-color: #016990FF; /* Teal */
    --secondary-color: #0286B6FF; /* Darker Teal */
    --light-bg: #f0fdfa; /* Very light mint/teal */
    --white: #ffffff;
    --dark-text: #1f2937;
    --light-text: #f9fafb;
    --grey-text: #4b5563;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius: 12px;
    --font-family: 'Montserrat', sans-serif;
}

/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--light-bg);
    color: var(--dark-text);
    text-align: justify;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    color: var(--primary-color);
    font-weight: 700;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 3rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p {
    line-height: 1.6;
    color: var(--grey-text);
    margin-bottom: 1rem;
}

section {
    padding: 4rem 0;
}

/* --- GRID LAYOUT --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* --- HEADER --- */
.main-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 3rem 0;
}

.main-header h1, .main-header p {
    color: var(--white);
}
.header-container{
  display:flex;
  align-items: center;
  flex-direction: column;
  gap: 1.5em;
}
.header-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
}

.header-sub {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 1em;
    font-size: 20px;
}

.presenta-text{
    font-size: 20px;
    color: var(--white);
    font-weight: bold;
}

.logo {
    height: 80px;
}

.date-location {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem;
}
.date-location p {
   text-align: center; 
}

/* --- INTRO SECTION --- */
.intro-section {
    background-color: var(--white);
}
.intro-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}
.intro-text h2 { text-align: left; }

/* --- EXPLORATION SECTION --- */
.exploration-grid {
    display: grid;
    gap: 1.5rem;
}
.exploration-grid .card {
    background-color: var(--white);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    border-left: 5px solid var(--primary-color);
}

/* --- SCHEDULE SECTION --- */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.schedule-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}
.schedule-card p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* --- PRICING SECTION --- */
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
}
.price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}
.price-subtitle {
    margin-bottom: 2rem;
}
.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}
.pricing-card li {
    margin-bottom: 0.75rem;
    color: var(--grey-text);
}
.pricing-card li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: var(--secondary-color);
}
.info-mail {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* --- CONDUCTOR SECTION --- */
.conductor-section {
    background-color: var(--white);
}
.conductor-image img {
    width: 100%;
    border-radius: var(--border-radius);
}
.conductor-text h3 {
    text-align: left;
}

/* --- LOCATION SECTION --- */
.location-info .location-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    margin-bottom: 1.5rem;
}
.btn-map {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}
.btn-map:hover {
    background-color: var(--primary-color);
}
.location-image img {
    width: 100%;
    border-radius: var(--border-radius);
}
.location-image .caption {
    text-align: center;
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* --- FOOTER --- */
.main-footer {
    background-color: #1f2937;
    color: var(--light-text);
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}
.main-footer p {
    color: var(--light-text);
    margin: 0;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    .intro-text h2, .conductor-text h3 {
        text-align: center;
        margin-top: 2rem;
    }
    .conductor-section .grid-2 {
        grid-template-areas: "text" "image";
    }
    .conductor-section .conductor-text { grid-area: text; }
    .conductor-section .conductor-image { grid-area: image; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .schedule-grid {
        grid-template-columns: 1fr;
    }
}
