/* ==========================
   RESET & GLOBAL STYLES
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #f7f5f1;
    background-color: #0e4f3d;
    line-height: 1.6;
}

a, button {
    cursor: pointer;
    text-decoration: none;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ==========================
   NAVIGATION
========================== */
.nav {
    position: fixed;
    width: 100%;
    background-color: #0e4f3d;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Times New Roman MT Condensed', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #f7f5f1;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: #f7f5f1;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #e3b765;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #f7f5f1;
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #0e4f3d;
    padding: 1rem 2rem;
    gap: 1rem;
}

.mobile-nav.show {
    display: flex;
}

/* ==========================
   HERO SECTION
========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, #0e4f3d, #0b3c2b);
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Times New Roman MT Condensed', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #c8ceb8;
}

.btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #e3b765;
    color: #0e4f3d;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(227, 183, 101, 0.5);
}

.btn-outline {
    border: 2px solid #e3b765;
    color: #e3b765;
}

.btn-outline:hover {
    background-color: #e3b765;
    color: #0e4f3d;
}

/* ==========================
   SECTIONS
========================== */
section {
    padding: 6rem 2rem;
}

.section-title {
    font-family: 'Alice', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #f7f5f1;
}

.section-text {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* ==========================
   CARDS
========================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    background-color: rgba(227, 183, 101, 0.1);
}

.card-icon {
    margin-bottom: 1rem;
    color: #e3b765;
}

.card-title {
    font-family: 'Times New Roman MT Condensed', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 1rem;
    color: #c8ceb8;
}

/* ==========================
   TESTIMONIALS
========================== */
.testimonials .cards-grid {
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #c8ceb8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e3b765;
    color: #0e4f3d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Times New Roman MT Condensed', serif;
}

/* ==========================
   NEWSLETTER FORM
========================== */
.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.input {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: none;
    min-width: 300px;
}

/* ==========================
   CTA
========================== */
.cta {
    text-align: center;
    background-color: #e3b765;
    color: #0e4f3d;
    padding: 6rem 2rem;
    border-radius: 12px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================
   FOOTER
========================== */
.footer {
    background-color: #0b3c2b;
    padding: 4rem 2rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-family: 'Times New Roman MT Condensed', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-family: 'Alice', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-text, .footer-links, .footer-link {
    font-size: 0.95rem;
    color: #c8ceb8;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: #e3b765;
    transition: 0.3s;
}

.footer-form {
    display: flex;
    gap: 0.5rem;
}

.footer-input {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: none;
}

.footer-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background-color: #e3b765;
    color: #0e4f3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-btn:hover {
    transform: scale(1.05);
}

.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #c8ceb8;
    transition: 0.3s;
}

.social-link:hover {
    color: #e3b765;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}