@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --chocolate-brown: #7a3112;
    --chocolate-brown-dark: #4e1400;
    --chocolate-brown-light: #cd9892;
    --cream: #ffefd7;
    --accent: #25140d;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--accent);
    line-height: 1.8;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: white;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 239, 215, 0.55);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--chocolate-brown-light);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    background: rgba(255, 239, 215, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    max-width: 120px;
    height: auto;
}

.nav-link {
    color: var(--chocolate-brown);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--chocolate-brown);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.nav-link:hover {
    background-color: var(--chocolate-brown);
    color: var(--cream);
    transform: translateY(-2px);
}

/* Hero Header Section */
.hero-header {
    position: relative;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.hero-header-sm {
    min-height: 50vh;
    padding-top: 4rem;  
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(37, 20, 13, 0.3), rgba(37, 20, 13, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-logo {
    max-width: 150px;
    margin: 0 auto 2rem;
    filter: brightness(0) invert(1);
}

.hero-badge {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-badge img {
    width: 60px;
    height: 60px;
}

.logo-container {
    max-width: 220px;
    margin: 0 auto;
}

.btn-primary {
    background-color: var(--chocolate-brown);
    color: var(--cream);
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    background-color: var(--chocolate-brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(78, 20, 0, 0.2);
}

.card {
    background-color: white;
    border: 1px solid var(--chocolate-brown-light);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--chocolate-brown);
    box-shadow: 0 8px 16px rgba(122, 49, 18, 0.1);
    transform: translateY(-4px);
}

/* Decorative Divider with Coffee Beans */
.decorative-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto;
    max-width: 300px;
}

.decorative-divider::before,
.decorative-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--chocolate-brown-light);
}

.decorative-divider::before {
    margin-right: 1rem;
}

.decorative-divider::after {
    margin-left: 1rem;
}

.decorative-divider img {
    width: 30px;
    height: auto;
}

.decorative-divider.white::before,
.decorative-divider.white::after {
    background-color: rgba(255, 255, 255, 0.5);
}

.decorative-divider.white img {
    filter: brightness(0) invert(1);
}

.divider {
    height: 1px;
    background-color: var(--chocolate-brown-light);
    width: 80px;
    margin: 1rem auto;
}

.text-chocolate {
    color: var(--chocolate-brown);
}

.text-chocolate-dark {
    color: var(--chocolate-brown-dark);
}

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

.border-chocolate {
    border-color: var(--chocolate-brown);
}

/* Image styling */
.content-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.image-card img {
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

/* Icon features */
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    fill: var(--chocolate-brown-light);
}

/* Animations */
.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.delay-2 {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.delay-3 {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.delay-4 {
    animation-delay: 0.8s;
    animation-fill-mode: both;
}

/* Typography refinements */
.elegant-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.body-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

/* Form Styles */
.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    color: var(--chocolate-brown-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-label.required::after {
    content: ' *';
    color: var(--chocolate-brown);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--chocolate-brown-light);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--accent);
    background-color: white;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--chocolate-brown);
    box-shadow: 0 0 0 3px rgba(122, 49, 18, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--chocolate-brown);
    color: var(--cream);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--chocolate-brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(78, 20, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.price-info {
    background-color: white;
    border: 2px solid var(--chocolate-brown);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: center;
}

.price-amount {
    font-size: 3rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--chocolate-brown);
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-includes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.price-item {
    padding: 1rem;
    background-color: var(--cream);
    border-radius: 4px;
}

.price-item-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price-item-text {
    font-size: 0.95rem;
    color: var(--chocolate-brown-dark);
    font-weight: 500;
}

/* Custom Radio Buttons */
.radio-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

@media (max-width: 640px) {
    .radio-group {
        flex-direction: column;
    }
}

.radio-option {
    flex: 1;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border: 2px solid var(--chocolate-brown-light);
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--chocolate-brown-dark);
    position: relative;
}

.radio-label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid var(--chocolate-brown-light);
    border-radius: 50%;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-label {
    border-color: var(--chocolate-brown);
    background-color: var(--cream);
}

.radio-option input[type="radio"]:checked + .radio-label::before {
    border-color: var(--chocolate-brown);
    background-color: var(--chocolate-brown);
    box-shadow: inset 0 0 0 3px white;
}

.radio-label:hover {
    border-color: var(--chocolate-brown);
    background-color: var(--cream);
}

.radio-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Secure Payment Section */
.secure-payment-info {
    text-align: center;
    padding: 2rem 0 0;
    border-top: 1px solid var(--chocolate-brown-light);
    margin-top: 2rem;
}

.secure-payment-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.secure-icon {
    font-size: 1.2rem;
}

.payment-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.payment-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-logo:hover {
    opacity: 1;
}

@media (max-width: 640px) {
    .payment-logo {
        height: 30px;
    }
    
    .payment-logos {
        gap: 1rem;
    }
}

/* About Page (O Sajmu) Styles */
.about-hero {
    padding: 8rem 2rem 4rem;
    background-color: white;
    text-align: center;
}

.sajamba-logo {
    max-width: 280px;
    margin: 0 auto 3rem;
    display: block;
}

.hero-tagline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--chocolate-brown-dark);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    padding: 4rem 2rem;
}

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

.about-intro {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--chocolate-brown-dark);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 500;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--chocolate-brown-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--chocolate-brown);
    box-shadow: 0 4px 12px rgba(122, 49, 18, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--chocolate-brown-dark);
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.mission-vision-section {
    background-color: var(--cream);
    padding: 4rem 2rem;
}

.mv-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--chocolate-brown-light);
}

.mv-title {
    font-size: 1.75rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--chocolate-brown);
    margin-bottom: 1.5rem;
    text-align: center;
}

.mv-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .sajamba-logo {
        max-width: 220px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--chocolate-brown-light);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: var(--chocolate-brown);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(122, 49, 18, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: white;
}
