/* Header */
.header {
    background: rgba(92, 59, 38, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(166, 100, 42, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #F4E3C1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #E5B57C;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #A6642A;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1C1C1C;
    background: linear-gradient(135deg, #5C3B26 0%, #4A2F1A 50%, #3D2515 100%);
    min-height: 100vh;
}

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

/* Utility Classes */
.gradient-gold {
    background: linear-gradient(135deg, #f4d03f 0%, #f39c12 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #f4d03f 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('hero-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 64rem;
}



.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #f4d03f 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 2.25rem;
    }
}

.taglines {
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.taglines p {
    font-size: 1.25rem;
    color: #fef3c7;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .taglines p {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Button Styles */
.btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #A6642A;
    color: #F4E3C1;
}

.btn-primary:hover {
    background-color: #8B4513;
}

.btn-outline {
    border: 2px solid #E5B57C;
    color: #E5B57C;
    background: transparent;
}

.btn-outline:hover {
    background-color: #E5B57C;
    color: #2A2A2A;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(to right, #A6642A, #8B4513);
    color: #F4E3C1;
    font-weight: 600;
    padding: 0.75rem;
    font-size: 1.125rem;
}

.btn-submit:hover {
    background: linear-gradient(to right, #8B4513, #654321);
}

/* Section Styles */
.about-section {
    padding: 5rem 0;
    background-color: #4A2F1A;
}

.mission-section {
    padding: 5rem 0;
    background-color: #3D2515;
}

.services-section {
    padding: 5rem 0;
    background-color: #4A2F1A;
}

.gallery-section {
    padding: 5rem 0;
    background-color: #3D2515;
}

.contact-section {
    padding: 5rem 0;
    background-color: #4A2F1A;
}

.section-content {
    max-width: 64rem;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #E5B57C 0%, #A6642A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(135deg, #f4d03f 0%, #f39c12 100%);
    margin: 0 auto 3rem auto;
    border-radius: 9999px;
}

.section-description {
    text-align: center;
    font-size: 1.25rem;
    color: #F4E3C1;
    margin-bottom: 4rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-card {
    background: rgba(244, 227, 193, 0.08);
    border-radius: 0.5rem;
    padding: 2rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(166, 100, 42, 0.3);
}

@media (min-width: 768px) {
    .about-card {
        padding: 3rem;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
    }
}

.about-text {
    flex: 1;
}

.about-image {
    flex-shrink: 0;
    text-align: center;
}

.family-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    border: 3px solid rgba(166, 100, 42, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.family-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(166, 100, 42, 0.2);
}

@media (min-width: 768px) {
    .family-photo {
        max-width: 350px;
    }
}

.about-card p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #F4E3C1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-card p {
        font-size: 1.25rem;
    }
}

.about-card .highlight {
    color: #E5B57C;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
}

/* Mission Section */
.mission-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mission-card {
    background: rgba(244, 227, 193, 0.08);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(166, 100, 42, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.mission-card:hover {
    border-color: rgba(166, 100, 42, 0.6);
    box-shadow: 0 8px 25px rgba(166, 100, 42, 0.15);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #E5B57C;
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #E5B57C;
    margin-bottom: 0.75rem;
}

.mission-card p {
    color: #F4E3C1;
}

.mission-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #E5B57C;
    font-weight: 500;
    text-align: center;
}

@media (min-width: 768px) {
    .mission-quote {
        font-size: 1.5rem;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: rgba(244, 227, 193, 0.08);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(166, 100, 42, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.service-card:hover {
    border-color: rgba(166, 100, 42, 0.6);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(166, 100, 42, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #E5B57C;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #E5B57C;
    margin-bottom: 1rem;
}

.service-card p {
    color: #F4E3C1;
    line-height: 1.75;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-column {
    text-align: center;
}

.gallery-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #E5B57C;
    margin-bottom: 1.5rem;
}

.gallery-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: rgba(244, 227, 193, 0.08);
    border-radius: 0.5rem;
    border: 2px dashed rgba(166, 100, 42, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: rgba(166, 100, 42, 0.7);
    background: rgba(244, 227, 193, 0.12);
}

.gallery-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #E5B57C;
}

.gallery-item p {
    font-size: 0.875rem;
    color: #F4E3C1;
}

.gallery-description {
    color: #F4E3C1;
    font-size: 0.875rem;
}

/* Contact Section */
/* Call to Action Buttons */
.contact-cta {
    text-align: center;
    margin: 40px 0 60px 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #A6642A 0%, #8B4513 100%);
    color: #F4E3C1;
    border: none;
    box-shadow: 0 4px 15px rgba(166, 100, 42, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(166, 100, 42, 0.4);
}

.btn-outline {
    background: transparent;
    color: #E5B57C;
    border: 2px solid #E5B57C;
}

.btn-outline:hover {
    background: #E5B57C;
    color: #2A2A2A;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.3rem;
}

/* Contact Information List */
.contact-info-list {
    max-width: 800px;
    margin: 60px auto;
    background: linear-gradient(145deg, rgba(244, 227, 193, 0.08), rgba(244, 227, 193, 0.02));
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(166, 100, 42, 0.15);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-item-elegant {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px 0;
    transition: all 0.3s ease;
}

.contact-item-elegant:hover {
    transform: translateX(8px);
}

.contact-icon-elegant {
    font-size: 2.2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(166, 100, 42, 0.2), rgba(166, 100, 42, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(166, 100, 42, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item-elegant:hover .contact-icon-elegant {
    background: linear-gradient(135deg, rgba(166, 100, 42, 0.3), rgba(166, 100, 42, 0.15));
    border-color: rgba(166, 100, 42, 0.5);
    transform: scale(1.1);
}

.contact-content {
    flex: 1;
    min-width: 0;
}

.contact-title {
    color: #E5B57C;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    letter-spacing: 0.3px;
}

.contact-value {
    color: #F4E3C1;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 6px 0;
    word-break: break-word;
    line-height: 1.4;
}

.contact-description {
    color: rgba(244, 227, 193, 0.8);
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
    line-height: 1.3;
}

.contact-hours {
    margin: 0;
}

.hours-line {
    color: #F4E3C1;
    margin: 4px 0;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.4;
}

.emergency-highlight {
    color: #E5B57C;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(229, 181, 124, 0.3);
}

.contact-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(166, 100, 42, 0.3), transparent);
    margin: 0 20px;
    opacity: 0.6;
}

/* Benefits Section */
.benefits-section {
    margin-top: 60px;
    text-align: center;
}

.benefits-title {
    color: #E5B57C;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(244, 227, 193, 0.08);
    padding: 25px 20px;
    border-radius: 15px;
    border: 1px solid rgba(166, 100, 42, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: rgba(166, 100, 42, 0.5);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
    color: #E5B57C;
}

.benefit-text {
    color: #F4E3C1;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(244, 227, 193, 0.08);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(166, 100, 42, 0.3);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #E5B57C;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.25rem;
    color: #A6642A;
}

.contact-label {
    color: #F4E3C1;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #E5B57C;
    margin: 0;
}

.contact-hours {
    color: #F4E3C1;
    margin: 0;
    font-size: 0.875rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #F4E3C1;
}

.checkmark {
    color: #A6642A;
}

/* Contact Form */
.contact-form-container {
    background: rgba(244, 227, 193, 0.08);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(166, 100, 42, 0.3);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #E5B57C;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #F4E3C1;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    background-color: rgba(244, 227, 193, 0.1);
    border: 1px solid rgba(166, 100, 42, 0.4);
    border-radius: 0.375rem;
    color: #F4E3C1;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A6642A;
}

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

/* Footer */
.footer {
    background-color: #3D2515;
    border-top: 1px solid rgba(166, 100, 42, 0.3);
    padding: 2rem 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo svg {
    color: #A6642A;
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, #E5B57C 0%, #A6642A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: #F4E3C1;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    color: #E5B57C;
    font-size: 0.875rem;
}

.footer-credit {
    color: rgba(244, 227, 193, 0.7);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.footer-credit a {
    color: #A6642A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #E5B57C;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-card,
    .contact-card,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .mission-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Section Mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        min-width: 280px;
        width: 100%;
        max-width: 350px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .contact-info-card {
        padding: 25px 20px;
        min-height: 180px;
        margin: 0 10px;
    }
    
    .contact-icon-large {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .contact-info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .contact-value-large {
        font-size: 1rem;
        margin: 6px 0;
    }
    
    .contact-hours-compact {
        font-size: 0.9rem;
        margin: 2px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-item {
        padding: 20px 15px;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .benefits-title {
        font-size: 1.6rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}