:root {
    /* Color Palette */
    --primary-1: #f8d4b0; /* Champagne gold */
    --primary-2: #d0a772; /* Deep champagne */
    --primary-3: #9e7a5f; /* Luxurious brown */
    --primary-4: #626d71; /* Slate gray */
    --primary-5: #392f5a; /* Deep purple */
    
    /* Light/dark variations */
    --primary-1-light: #fce9d7;
    --primary-1-dark: #e6b989;
    --primary-2-light: #e9c9a0;
    --primary-2-dark: #b78a4e;
    --primary-3-light: #bea18c;
    --primary-3-dark: #7c5e48;
    --primary-4-light: #8c979b;
    --primary-4-dark: #465054;
    --primary-5-light: #645986;
    --primary-5-dark: #211a35;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-5);
}

a {
    text-decoration: none;
    color: var(--primary-3);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-2);
}

/* Container & Section Styles */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary-2);
}

.section-title p {
    color: var(--primary-4);
    max-width: 700px;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-2);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn:hover {
    background-color: var(--primary-3);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-2);
    color: var(--primary-2);
}

.btn-outline:hover {
    background-color: var(--primary-2);
    color: #fff;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    background-color: #fff;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-5);
    font-family: 'Playfair Display', serif;
}

.logo a {
    color: inherit;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: var(--primary-5);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

.main-nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-2);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover:after,
.main-nav ul li a.active:after {
    width: 100%;
}

.menu-toggle {
    display: none;
}

/* Hero Section */
#hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    overflow: hidden;
}

#hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57, 47, 90, 0.8) 0%, rgba(208, 167, 114, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* About Section */
#about {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-3);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-2);
    margin-bottom: 15px;
}

/* Services Section */
#services {
    background-color: #f9f9f9;
    position: relative;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-price {
    font-size: 1.5rem;
    color: var(--primary-2);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-features {
    margin-top: 15px;
}

.service-features ul {
    list-style: none;
}

.service-features ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.service-features ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-2);
}

/* Features Section */
#features {
    background-color: #fff;
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.feature-box-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-1-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.feature-box-icon i {
    font-size: 1.5rem;
    color: var(--primary-3);
}

.feature-box-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Price Plans */
#price-plans {
    background-color: #f9f9f9;
}

.pricing-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.pricing-plan {
    flex: 1;
    max-width: 350px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    padding: 30px;
    background-color: var(--primary-5);
    color: #fff;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0;
}

.pricing-content {
    padding: 30px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.pricing-features ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-2);
}

/* Team Section */
#team {
    background-color: #fff;
}

.team-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-1-light);
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-member span {
    color: var(--primary-2);
    font-size: 0.9rem;
}

/* Reviews/Testimonials */
#reviews {
    background-color: #f9f9f9;
    position: relative;
}

.reviews-wrapper {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.review-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 10px;
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.review-text:before,
.review-text:after {
    content: '"';
    font-size: 50px;
    color: var(--primary-1);
    line-height: 0;
    position: absolute;
}

.review-text:before {
    top: 15px;
    left: -15px;
}

.review-text:after {
    bottom: -10px;
    right: -15px;
}

.review-author {
    font-weight: 600;
    color: var(--primary-3);
}

/* Core Info Section */
#core-info {
    background-color: #fff;
}

.core-info-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.core-info-item {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.core-info-item:hover {
    background-color: var(--primary-1-light);
}

.core-info-icon {
    font-size: 2.5rem;
    color: var(--primary-2);
    margin-bottom: 20px;
}

.core-info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Contact Form */
#contact {
    background-color: #f9f9f9;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-2);
    outline: none;
    box-shadow: 0 0 0 3px rgba(208, 167, 114, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-check {
    margin-bottom: 15px;
}

.form-check-input {
    margin-right: 10px;
}

.contact-info {
    padding: 0 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-1-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-info-icon i {
    font-size: 1.2rem;
    color: var(--primary-3);
}

.contact-info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Blog Section */
#blog {
    background-color: #fff;
}

.blog-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.blog-date {
    font-size: 0.9rem;
    color: var(--primary-4);
    margin-bottom: 10px;
}

.blog-excerpt {
    margin-bottom: 15px;
}

/* FAQ Section */
#faq {
    background-color: #f9f9f9;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    background-color: #fff;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.accordion-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.accordion-header i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-content {
    background-color: #fff;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-content-inner {
    padding: 20px;
}

.accordion-item.active .accordion-header {
    background-color: var(--primary-5);
    color: #fff;
    border-radius: 10px 10px 0 0;
}

.accordion-item.active .accordion-header h3 {
    color: #fff;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: #fff;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

/* Gallery Section */
#gallery {
    padding: 100px 0;
    background-color: #fff;
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(57, 47, 90, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Footer */
footer {
    background-color: var(--primary-5-dark);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-about h2 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-2);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-2);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-icon {
    margin-right: 15px;
    color: var(--primary-2);
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 150px 0 30px;
    background-color: var(--primary-5);
    color: #fff;
    text-align: center;
}

.breadcrumb h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Space Page */
#space {
    min-height: 100vh;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Additional Pages */
.page-section {
    padding: 80px 0;
}

.page-section:nth-child(even) {
    background-color: #f9f9f9;
}

.page-section:nth-child(odd) {
    background-color: #fff;
}

/* Shape Elements */
.shape {
    position: absolute;
    z-index: 0;
}

.shape-1 {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--primary-1-light);
    border-radius: 23% 77% 65% 35% / 30% 44% 56% 70%;
    opacity: 0.5;
}

.shape-2 {
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background-color: var(--primary-3-light);
    border-radius: 65% 35% 27% 73% / 55% 31% 69% 45%;
    opacity: 0.5;
}

.shape-3 {
    top: 100px;
    left: 50px;
    width: 150px;
    height: 150px;
    background-color: var(--primary-2-light);
    border-radius: 41% 59% 39% 61% / 28% 42% 58% 72%;
    opacity: 0.3;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hidden {
    display: none;
} 