:root {
    --yellow-primary: #FFD700;
    --yellow-light: #FFFACD;
    --yellow-dark: #B8860B;
    --black: #333;
    --white: #FFFFFF;
    --gray-text: #6c757d;
}

/* Base Styles & Typography */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

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

.section {
    padding: 4rem 0;
}

.bg-light-yellow {
    background-color: var(--yellow-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gray-text);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--yellow-dark);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--yellow-primary);
    transform: translateY(-3px);
    color: var(--black);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--yellow-dark);
    border: 2px solid var(--yellow-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background-color: var(--yellow-dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--yellow-dark);
    text-decoration: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--yellow-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--yellow-dark);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background-image: linear-gradient(to bottom, var(--white), var(--yellow-light));
    display: flex;
    align-items: center;
    text-align: center;
    padding: 5rem 0;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--black);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--gray-text);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--yellow-dark);
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.card-link {
    font-weight: 600;
    color: var(--yellow-dark);
    text-decoration: none;
    align-self: flex-start;
    transition: transform 0.3s ease;
}

.card-link:hover {
    transform: translateX(5px);
}

/* About Section */
.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 50%;
    border: 5px solid var(--yellow-dark);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

.about-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--yellow-dark);
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--yellow-dark);
}

.about-text {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

/* Contact Form */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-grid {
    display: grid;
    gap: 1.5rem;
}

.form-container label {
    font-weight: 600;
    color: var(--black);
    display: block;
    margin-bottom: 0.5rem;
}

.form-container input, .form-container textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--black);
    transition: border-color 0.3s ease;
}

.form-container input:focus, .form-container textarea:focus {
    outline: none;
    border-color: var(--yellow-dark);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
}

.form-button {
    margin-top: 1rem;
    width: auto;
    justify-self: center;
}

.thank-you-message {
    text-align: center;
    padding: 3rem;
}

.thank-you-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow-dark);
    margin-bottom: 1rem;
}

/* Cookie Bar */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--black);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-bar.active {
    transform: translateY(0);
}

.cookie-bar p {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
}

.cookie-bar a {
    color: var(--yellow-primary);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-bar .btn-primary {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 3rem 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

/* Media Queries for Responsiveness */
@media (min-width: 768px) {
    .about-section {
        flex-direction: row;
        text-align: left;
    }

    .about-content {
        flex: 1;
        padding-left: 2rem;
    }

    .about-image {
        flex: 1;
    }

    .about-image img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 991.98px) {
    .nav-menu {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding-top: 1rem;
    }

    .header .collapse:not(.show) {
        display: none;
    }

    .header .collapse.show {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .menu-toggle {
        display: block;
    }

    .cookie-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
}