:root {
    --primary-color-1: #d4b895; /* Warm sand */
    --primary-color-2: #8c7a64; /* Taupe */
    --primary-color-3: #3d3d3d; /* Dark charcoal */
    --primary-color-4: #f5efe7; /* Cream */
    --primary-color-5: #a68a64; /* Golden brown */

    --primary-color-1-light: #e6d7c3;
    --primary-color-1-dark: #b29a77;
    --primary-color-2-light: #a89884;
    --primary-color-2-dark: #6e5f4d;
    --primary-color-3-light: #6b6b6b;
    --primary-color-3-dark: #242424;
    --primary-color-4-light: #ffffff;
    --primary-color-4-dark: #e2d8cc;
    --primary-color-5-light: #c2ab8c;
    --primary-color-5-dark: #866e4f;
}

/* Base styles */
html, body {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--primary-color-3);
    background-color: var(--primary-color-4);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color-3);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

a {
    color: var(--primary-color-5);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color-5-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title h2:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary-color-5);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color-2);
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

/* Header styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar {
    padding: 0;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-color-3-dark);
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color-3);
    padding: 10px 20px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color-5);
}

/* Hero section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.hero-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About section */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-image {
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.about-features {
    margin-top: 40px;
}

.about-feature-item {
    margin-bottom: 30px;
}

.about-feature-item h4 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.about-feature-item p {
    color: var(--primary-color-2);
}

/* Services section */
.services-section {
    background-color: var(--primary-color-4-light);
    position: relative;
}

.service-item {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-item p {
    color: var(--primary-color-2);
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 20px;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
    font-family: 'Montserrat', sans-serif;
}

.service-features ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--primary-color-5);
    font-size: 14px;
}

.service-price {
    font-size: 1.8rem;
    color: var(--primary-color-5);
    font-weight: 700;
    margin-bottom: 0;
}

/* Features section */
.features-section {
    position: relative;
}

.feature-item {
    text-align: center;
    margin-bottom: 40px;
}

.feature-icon {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--primary-color-5);
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--primary-color-2);
}

/* Price plan section */
.price-plan-section {
    background-color: var(--primary-color-4-light);
}

.price-item {
    background-color: #fff;
    border-radius: 5px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 30px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.price-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.price-item h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.price-item p {
    color: var(--primary-color-2);
    margin-bottom: 25px;
}

.price-features {
    margin-bottom: 30px;
}

.price-features ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.price-features ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    font-family: 'Montserrat', sans-serif;
}

.price-features ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--primary-color-5);
    font-size: 14px;
}

.price-value {
    font-size: 2.5rem;
    color: var(--primary-color-5);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.price-value:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color-5);
}

/* Team section */
.team-section {
    position: relative;
}

.team-member {
    text-align: center;
    margin-bottom: 40px;
}

.team-member img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-member p {
    color: var(--primary-color-2);
    font-style: italic;
}

/* Reviews section */
.reviews-section {
    background-color: var(--primary-color-4-light);
    position: relative;
}

.review-slider {
    width: 100%;
    padding-bottom: 50px;
}

.review-item {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-top: 30px;
}

.review-text:before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: -10px;
    color: var(--primary-color-5);
    font-size: 24px;
    opacity: 0.3;
}

.review-author {
    font-weight: 700;
    color: var(--primary-color-3);
}

/* Core info section */
.core-info-section {
    position: relative;
}

.core-info-item {
    text-align: center;
    margin-bottom: 40px;
}

.core-info-icon {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--primary-color-5);
}

.core-info-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.core-info-item p {
    color: var(--primary-color-2);
}

/* Contact section */
.contact-section {
    background-color: var(--primary-color-4-light);
}

.contact-form {
    background-color: #fff;
    border-radius: 5px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-control {
    border: 1px solid #eee;
    border-radius: 3px;
    height: 50px;
    padding: 0 20px;
    color: var(--primary-color-3);
    margin-bottom: 20px;
}

textarea.form-control {
    height: 150px;
    padding: 15px 20px;
}

.form-control:focus {
    border-color: var(--primary-color-5);
    box-shadow: none;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color-5);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-info {
    margin-top: 50px;
}

.contact-info-item {
    margin-bottom: 30px;
    position: relative;
    padding-left: 40px;
}

.contact-info-icon {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 1.5rem;
    color: var(--primary-color-5);
}

.contact-info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-info-item p {
    color: var(--primary-color-2);
}

/* Blog section */
.blog-section {
    position: relative;
}

.blog-item {
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 5px;
    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 35px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.blog-content p {
    color: var(--primary-color-2);
    margin-bottom: 20px;
}

/* FAQ section */
.faq-section {
    background-color: var(--primary-color-4-light);
}

.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color-3);
    padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color-5-light);
    color: var(--primary-color-3-dark);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 20px 25px;
    background-color: #fff;
    color: var(--primary-color-2);
}

/* Gallery section */
.gallery-section {
    position: relative;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    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);
}

/* Footer */
footer {
    background-color: var(--primary-color-3-dark);
    color: #fff;
    padding: 60px 0 30px;
    position: relative;
}

footer h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

footer h4:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color-5);
}

footer p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.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-color-5);
    padding-left: 5px;
}

.contact-info-footer {
    list-style: none;
    padding-left: 0;
}

.contact-info-footer li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-footer li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color-5);
}

#site-copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Common elements */
.btn {
    padding: 12px 30px;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color-5);
    border-color: var(--primary-color-5);
}

.btn-primary:hover {
    background-color: var(--primary-color-5-dark);
    border-color: var(--primary-color-5-dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color-5);
    color: var(--primary-color-5);
}

.btn-outline:hover {
    background-color: var(--primary-color-5);
    color: #fff;
}

.btn-white {
    background-color: #fff;
    color: var(--primary-color-3);
}

.btn-white:hover {
    background-color: var(--primary-color-5);
    color: #fff;
}

/* Shape decorative elements */
.shape {
    position: absolute;
    z-index: 0;
}

.shape-1 {
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--primary-color-1-light);
    opacity: 0.2;
}

.shape-2 {
    bottom: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: var(--primary-color-5-light);
    opacity: 0.15;
}

/* Additional page styles */
.page-header {
    height: 50vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 80px;
}

.page-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.page-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
    justify-content: center;
}

.breadcrumb-item {
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Animation and special effects */
.animated-bg {
    position: relative;
    overflow: hidden;
}

.animated-bg:before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    z-index: -1;
    background: linear-gradient(45deg, var(--primary-color-1-light), var(--primary-color-5-light), var(--primary-color-4));
    animation: gradientAnimation 15s ease infinite;
    opacity: 0.1;
}

@keyframes gradientAnimation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Media queries */
@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
} 