/* CSS Custom Properties */
:root {
    --brown-rust: #ba6641;
    --pampas: #f7f4f1;
    --mongoose: #baa57c;
    --muddy-waters: #b98861;
    --limed-oak: #a1864e;
    --santa-fe: #b96f4a;
    --sandal: #ab906c;
    --santa-fe-alt: #b97a54;
    --teak: #ba956d;
}


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

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    background-color: var(--pampas);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--brown-rust);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brown-rust), var(--santa-fe));
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('IMG_7095.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-text {
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brown-rust), var(--santa-fe));
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(186, 102, 65, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--brown-rust);
    border: 2px solid white;
    font-weight: 600;
}

.btn-secondary:hover {
    background: white;
    color: var(--brown-rust);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

/* Hero image styles removed - now using background image */

/* Decorative Circles */
.hero-decorative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(186, 102, 65, 0.1), rgba(185, 111, 74, 0.05));
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -150px;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #34495e;
    max-width: 600px;
    margin: 0 auto;
}

.services-header p {
    max-width: 900px;
    font-size: 1.15rem;
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--pampas);
    border-radius: 10px;
    border-left: 4px solid var(--brown-rust);
}

.credential i {
    color: var(--brown-rust);
    font-size: 1.2rem;
}

.credential span {
    font-weight: 600;
    color: #2c3e50;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--pampas) 0%, #f5f0eb 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 1.8rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--brown-rust);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brown-rust), var(--santa-fe));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: #34495e;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brown-rust);
    font-weight: bold;
}

/* What is a Humanist Officiant Section */
.humanist-officiant {
    padding: 4rem 0;
    background: white;
}

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

.humanist-text {
    text-align: center;
}

.humanist-text p {
    font-size: 1.2rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.humanist-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 2rem 0 1.5rem 0;
    text-align: center;
}

.humanist-text ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.humanist-text li {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
    color: #34495e;
    line-height: 1.7;
    text-align: left;
}

.humanist-text li::before {
    content: "•";
    color: var(--brown-rust);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

.humanist-text a {
    color: var(--brown-rust);
    text-decoration: none;
    font-weight: 600;
}

.humanist-text a:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, var(--pampas) 0%, #f5f0eb 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem 0;
}

.testimonial {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 120px;
}

/* Removed the orange quote mark */

/* Responsive design for testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        gap: 2rem;
        max-width: 100%;
        padding: 1rem;
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 2rem;
        min-height: auto;
        gap: 1.5rem;
    }
    
    .testimonial-author {
        min-width: auto;
    }
    
    .author-image {
        width: 70px;
        height: 70px;
    }
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-size: 0.95rem;
    color: #34495e;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    min-width: 120px;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--brown-rust);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.author-info p {
    color: var(--brown-rust);
    font-weight: 600;
    margin: 0;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Gallery hover effect removed */

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(186, 102, 65, 0.8), rgba(185, 111, 74, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Gallery overlay hover effect removed */

.gallery-more {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-button-container {
    text-align: center;
    margin-top: 3rem;
}

/* Adjust padding for specific gallery images */
.gallery-item:nth-child(3) img {
    object-position: top;
}

.gallery-item:nth-last-child(3) img {
    object-position: top;
}

.gallery-item:last-child img {
    object-position: top;
}

.gallery-text {
    text-align: center;
    color: white;
}

.gallery-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-text p {
    font-size: 1rem;
}

/* Business Cards Section */





/* Contact Section */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.contact .section-header h2 {
    color: white;
}

.contact .section-header p {
    color: #bdc3c7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-item i {
    color: var(--brown-rust);
    font-size: 1.5rem;
    width: 30px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--brown-rust);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

/* Service location now uses standard contact-item styling */

.calendly-widget {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    height: fit-content;
    min-width: 320px;
}

.calendly-inline-widget {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive design for Calendly widget */
@media (max-width: 768px) {
    .calendly-widget {
        padding: 1.5rem;
        min-width: 280px;
    }
    
    .calendly-inline-widget {
        min-width: 280px !important;
        height: 600px !important;
    }
}

@media (max-width: 480px) {
    .calendly-widget {
        padding: 1rem;
        min-width: 260px;
    }
    
    .calendly-inline-widget {
        min-width: 260px !important;
        height: 500px !important;
    }
}

/* Footer */
.footer {
    background: #1a252f;
    padding: 2rem 0 1rem;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    color: var(--brown-rust);
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--brown-rust);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--mongoose);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Hero section mobile adjustments */
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: 100vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }


    .hero-text h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    /* Hero section iPhone/small screen adjustments */
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: 100vh;
        padding-top: 60px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: 100vh;
        padding-top: 50px;
    }


    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }
    
    /* Humanist section mobile adjustments */
    .humanist-text p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .humanist-text h3 {
        font-size: 1.5rem;
    }
    
    .humanist-text li {
        padding-left: 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Services grid mobile adjustments */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    /* About section mobile adjustments */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    /* Gallery mobile adjustments */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Contact section mobile adjustments */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 320px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .humanist-text p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .humanist-text h3 {
        font-size: 1.3rem;
    }
    
    .humanist-text li {
        padding-left: 1.2rem;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
        padding: 0.5rem;
    }
    
    .testimonial {
        padding: 1.2rem 1.8rem;
        gap: 1rem;
    }
    
    .author-image {
        width: 60px;
        height: 60px;
    }
    
    .contact-info {
        padding: 1.2rem;
    }
}

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

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--brown-rust);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--santa-fe);
}
