@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --purple: #5d1f9c;
    --purple-light: #7b39b7;
    --purple-dark: #461576;
    --gold: #d4af37;
    --gold-light: #e9c662;
    --gold-dark: #b7952e;
    --white: #ffffff;
    --gray: #f5f5f5;
    --dark-gray: #444444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--purple-dark);
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--gold);
    color: var(--purple-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn:hover {
    background-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

.btn-white {
    background-color: var(--white);
    color: var(--purple);
    box-shadow: 0 4px 12px rgba(93, 31, 156, 0.15);
}

.btn-white:hover {
    background-color: var(--gray);
    color: var(--purple-dark);
}

.btn-purple {
    background-color: var(--purple) !important;
    color: #ffffff !important;   
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-top: -10px;
}

.btn-purple:hover {
    background-color: var(--purple-dark) !important;
    color: #ffffff !important;
}

/* Header styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    color: var(--purple);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-left: 10px;
}

.logo-text span {
    color: var(--gold);
}

.logo-image {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
    margin-top: 10px;
}

.nav-links a {
    text-decoration: none;
    color: var(--purple-dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--gold);
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

/* Hero section */
.hero {
    position: relative;
    background: linear-gradient(rgba(93, 31, 156, 0.85), rgba(93, 31, 156, 0.85)), url('https://am8.nyc3.digitaloceanspaces.com/greetingopendoors1.webp');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-content {
    max-width: 650px;
    animation: fadeInUp 1.2s ease-out;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-shape {
    position: absolute;
    bottom: -50px;
    right: -100px;
    width: 500px;
    height: 500px;
    background-color: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
}

.hero-shape-2 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
}

/* Page header for sub pages */
.page-header {
    background: linear-gradient(rgba(93, 31, 156, 0.9), rgba(93, 31, 156, 0.9)), url('https://am8.nyc3.digitaloceanspaces.com/greetingopendoors1.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About section */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    position: relative;
    display: inline-block;
}

.about-text h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(93, 31, 156, 0.2);
}

.about-image img {
    width: 100%;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--purple-light), var(--purple-dark));
    position: relative;
    color: var(--white);
}

.services h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.service-card h3 {
    color: var(--gold);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--gold);
}

.service-card .btn {
    margin-top: 20px;
}

/* Mission section */
.mission {
    background-color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.mission-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.mission-image {
    flex: 1;
    min-width: 300px;
    border-radius: 0 30% 30% 0;
    overflow: hidden;
    position: relative;
    box-shadow: 15px 15px 0 var(--gold);
}

.mission-text {
    flex: 1;
    min-width: 300px;
}

.mission-text h2 {
    position: relative;
}

.mission-text h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.founder-highlight {
    background-color: rgba(93, 31, 156, 0.05);
    border-left: 3px solid var(--purple);
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 10px 10px 0;
}

.founder-highlight h3 {
    color: var(--purple);
    margin-bottom: 10px;
}

/* CTA section */
.cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://am8.nyc3.digitaloceanspaces.com/godf-handshake.webp');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Testimonials section */
.testimonials {
    padding: 100px 0;
    background-color: var(--gray);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card:before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    color: var(--gold);
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.2;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.author-image svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
}

/* FAQ section */
.faq {
    padding: 100px 0;
    background-color: var(--white);
}

.faq h2 {
    text-align: center;
    margin-bottom: 60px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 20px 30px;
    background-color: var(--purple-light);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: var(--purple);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--white);
}

.accordion-inner {
    padding: 20px 30px;
    color: var(--dark-gray);
}

.accordion-active .accordion-content {
    max-height: 300px;
}

/* Contact section */
.contact {
    padding: 100px 0;
    background-color: var(--gray);
    position: relative;
    overflow: hidden;
}

.contact h2 {
    text-align: center;
    margin-bottom: 60px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 2px rgba(93, 31, 156, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: right;
}

/* Map section */
.map {
    height: 450px;
    background-color: #eee;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background-color: var(--purple-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
    fill: var(--gold);
}

.footer-logo-text {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-left: 10px;
}

.footer-logo-text span {
    color: var(--gold);
}

.footer-logo-image {
    height: 50px;
    width: auto;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-icon {
    margin-right: 15px;
}

.footer-contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-subscribe {
    display: flex;
}

.footer-subscribe input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: 'Montserrat', sans-serif;
}

.footer-subscribe button {
    background-color: var(--gold);
    color: var(--purple-dark);
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.floating-button {
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.floating-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.floating-button svg {
    width: 30px;
    height: 30px;
    fill: var(--purple-dark);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .mobile-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .about, .services, .mission, .cta, .testimonials, .faq, .contact {
        padding: 70px 0;
    }
    
    .footer-container {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-card, .footer-subscribe {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        min-height: 450px;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button {
        width: 50px;
        height: 50px;
    }
    
    .floating-button svg {
        width: 25px;
        height: 25px;
    }
} 