/* Rustic Wedding Planning - Main CSS */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/Swiper/11.0.5/swiper-bundle.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

:root {
    /* Primary Colors - Rustic Wedding Theme */
    --primary-sage: #a5c68b;
    --primary-cream: #f3f1ed;
    --primary-terracotta: #d5802b;
    --primary-dusty-rose: #d6aa7e;
    --primary-forest: #2a4c2f;
    
    /* Light Shades */
    --light-sage: #b7c1ad;
    --light-cream: #FDFCF8;
    --light-terracotta: #f6c360;
    --light-rose: #f0d49a;
    --light-forest: #4f6153;
    
    /* Dark Shades */
    --dark-sage: #689659;
    --dark-cream: #d5cec4;
    --dark-terracotta: #be732d;
    --dark-rose: #aa8553;
    --dark-forest: #355740;
    
    /* Typography */
    --font-main: 'Georgia', serif;
    --font-accent: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 4rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    font-size: 18.00px;
    line-height: 1.6;
    color: var(--dark-forest);
    background-color: var(--primary-cream);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-accent);
    font-weight: 400;
    margin-bottom: 1.16rem;
}

h1 { font-size: 2.27rem; }
h2 { font-size: 1.85rem; }
h3 { font-size: 1.60rem; }
h4 { font-size: 1.32rem; }
h5 { font-size: 1.13rem; }
h6 { font-size: 1.04rem; }

p {
    margin-bottom: 1.16rem;
    font-size: 18.00px;
}

/* Header */
.navbar {
    background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-cream) 100%);
    box-shadow: 0 7px 19px rgba(61, 102, 61, 0.10);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-accent);
    font-size: 1.60rem;
    color: var(--primary-forest) !important;
    font-weight: 600;
}

.navbar-nav .nav-link {
    color: var(--dark-forest) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-terracotta) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--light-sage) 50%, var(--primary-cream) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-background.webp') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.13rem;
    color: var(--primary-forest);
    margin-bottom: 1.58rem;
}

.hero-subtitle {
    font-size: 1.32rem;
    color: var(--dark-forest);
    margin-bottom: 2.25rem;
}

.hero-desc {
    font-size: 19.00px;
    color: var(--dark-sage);
}

/* Section Styling */
.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    color: var(--primary-forest);
    margin-bottom: 1.16rem;
}

.section-subtitle {
    text-align: center;
    color: var(--dark-sage);
    margin-bottom: 1.58rem;
}

.section-desc {
    text-align: center;
    color: var(--dark-forest);
    margin-bottom: 3.19rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background: var(--light-cream);
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 17px;
    box-shadow: 0 7px 20px rgba(38, 70, 37, 0.10);
    margin-bottom: 2.25rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-icon {
    font-size: 2.51rem;
    color: var(--primary-terracotta);
    margin-bottom: 1.16rem;
}

/* Services Section */
.services-section {
    background: var(--primary-cream);
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 11px 28px rgba(72, 114, 81, 0.15);
    transition: transform 0.3s ease;
    margin-bottom: 2.25rem;
}

.service-card:hover {
    transform: translateY(-9px);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 1.5rem;
}

.service-name {
    color: var(--primary-forest);
    margin-bottom: 0.71rem;
}

.service-price {
    font-size: 1.60rem;
    color: var(--primary-terracotta);
    font-weight: 600;
    margin-bottom: 1.16rem;
}

.service-features {
    color: var(--dark-sage);
    margin-bottom: 1.16rem;
}

/* Features Section */
.features-section {
    background: var(--primary-cream);
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(49, 80, 55, 0.10);
    margin-bottom: 2.25rem;
    text-align: center;
}

.feature-item-icon {
    font-size: 2.51rem;
    color: var(--primary-terracotta);
    margin-bottom: 1.16rem;
}

/* Price Plans */
.priceplan-section {
    background: var(--light-cream);
}

.price-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(68, 118, 72, 0.15);
    margin-bottom: 2.25rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
}

.price-amount {
    font-size: 2.02rem;
    color: var(--primary-terracotta);
    font-weight: 600;
    margin: 1rem 0;
}

/* Team Section */
.team-section {
    background: var(--light-cream);
}

.team-card {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 9px 20px rgba(58, 98, 68, 0.10);
    margin-bottom: 2.25rem;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-sage);
}

.team-name {
    color: var(--primary-forest);
    margin-bottom: 0.71rem;
}

.team-role {
    color: var(--primary-terracotta);
    font-style: italic;
}

/* Reviews/Testimonials */
.reviews-section {
    background: var(--primary-cream);
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 19px;
    box-shadow: 0 8px 20px rgba(53, 88, 63, 0.10);
    margin: 1rem;
    text-align: center;
}

.review-text {
    font-style: italic;
    color: var(--dark-forest);
    margin-bottom: 1.16rem;
}

.review-author {
    color: var(--primary-terracotta);
    font-weight: 600;
}

/* Case Study Section */
.casestudy-section {
    background: var(--light-cream);
}

.casestudy-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(37, 76, 46, 0.10);
    margin-bottom: 2.25rem;
    transition: transform 0.3s ease;
}

.casestudy-card:hover {
    transform: translateY(-5px);
}

/* Process Section */
.process-section {
    background: var(--primary-cream);
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(66, 113, 69, 0.10);
    margin-bottom: 2.25rem;
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-terracotta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.60rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline-section {
    background: var(--light-cream);
}

.timeline-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(56, 104, 58, 0.10);
    margin-bottom: 2.25rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-terracotta);
    border-radius: 50%;
}

/* Career Section */
.career-section {
    background: var(--primary-cream);
}

.career-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(43, 93, 56, 0.10);
    margin-bottom: 2.25rem;
    transition: transform 0.3s ease;
}

.career-card:hover {
    transform: translateY(-5px);
}

/* Core Info Section */
.coreinfo-section {
    background: var(--light-cream);
}

.coreinfo-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(33, 71, 34, 0.10);
    margin-bottom: 2.25rem;
    text-align: center;
}

.coreinfo-icon {
    font-size: 2.51rem;
    color: var(--primary-terracotta);
    margin-bottom: 1.16rem;
}

/* Contact Form */
.contact-section {
    background: linear-gradient(135deg, var(--light-sage) 0%, var(--primary-cream) 100%);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(67, 102, 74, 0.15);
}

.form-control {
    border: 5px solid var(--light-sage);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1.16rem;
    font-family: var(--font-main);
}

.form-control:focus {
    border-color: var(--primary-terracotta);
    box-shadow: 0 0 0 0.2rem rgba(189, 112, 29, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--dark-terracotta) 100%);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--dark-terracotta) 0%, var(--primary-terracotta) 100%);
}

/* Blog Section */
.blog-section {
    background: var(--light-cream);
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(57, 112, 68, 0.10);
    margin-bottom: 2.25rem;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    color: var(--primary-forest);
    margin-bottom: 0.71rem;
}

.blog-excerpt {
    color: var(--dark-sage);
    margin-bottom: 1.16rem;
}

.blog-link {
    color: var(--primary-terracotta);
    text-decoration: none;
    font-weight: 600;
}

.blog-link:hover {
    color: var(--dark-terracotta);
}

/* FAQ Section */
.faq-section {
    background: var(--primary-cream);
}

.faq-item {
    background: white;
    margin-bottom: 1.16rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(56, 89, 61, 0.10);
}

.faq-question {
    background: var(--light-sage);
    color: var(--primary-forest);
    padding: 1rem;
    border-radius: 10px 10px 0 0;
    margin: 0;
    font-weight: 600;
    cursor: pointer;
}

.faq-answer {
    padding: 1rem;
    color: var(--dark-forest);
    display: none;
}

.faq-answer.show {
    display: block;
}

/* Gallery */
.gallery-section {
    background: var(--primary-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(55, 98, 64, 0.10);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-forest) 0%, var(--dark-forest) 100%);
    color: var(--primary-cream);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--light-sage);
    margin-bottom: 1.16rem;
}

.footer a {
    color: var(--primary-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-dusty-rose);
}

.footer-bottom {
    border-top: 1px solid var(--dark-sage);
    padding-top: 1.19rem;
    margin-top: 2.24rem;
    text-align: center;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--primary-terracotta);
}

.swiper-pagination-bullet-active {
    background: var(--dark-terracotta);
}

/* Space Page */
#space {
    min-height: 80vh;
    background: var(--primary-cream);
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
