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

body {
    font-family: 'Red Rose', sans-serif;
    background: rgba(211, 212, 170, 1);
    line-height: 1.6;
    color: #333;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    display: none;
    transition: transform 0.3s ease;
}

.cookie-banner.show {
  display: flex;
    transform: translateY(0);
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}

.btn-accept {
    background: rgba(189, 76, 0, 1);
    color: white;
}

.btn-decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

/* Header */
.header {
    background: rgba(211, 212, 170, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {

  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  color: inherit;
  text-decoration: unset;

}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: rgba(189, 76, 0, 1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #666;
}

.hero-description {
    font-size: 1rem !important;
    line-height: 1.6;
    margin-bottom: 2rem !important;
}

.cta-button, .submit-button {
    background: rgba(189, 76, 0, 1);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover, .submit-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* About Section */
.about {
    padding: 80px 0;
  
}

.about h2 {
    font-size: 2.5rem;

    margin-bottom: 3rem;
    color: #333;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: auto;
}

.mission-statement {

    margin-top: 3rem;
}

.mission-statement h3 {
    font-size: 1.8rem;
    color: #333;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: rgba(211, 212, 170, 1);
}

.why-choose-us h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

.feature h4 {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.why-choose-us .cta-button {
    display: block;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.8);
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.service-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: rgba(211, 212, 170, 1);
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.testimonial-avatar {
    margin-bottom: 1rem;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.testimonial p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 40px 0;
   
}

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

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

textarea {
  resize: none;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: rgba(211, 212, 170, 1);
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Red Rose', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(189, 76, 0, 1);
}

.submit-button {
    width: 100%;
    margin-top: 1rem;
}

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

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgba(189, 76, 0, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .about h2, .services h2, .testimonials h2, .why-choose-us h2, .contact h2 {
        font-size: 2rem;
    }
    
    .mission-statement h3 {
        font-size: 1.4rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .contact-form {
        margin: 2rem auto 0;
        padding: 1.5rem;
    }
    
    .cta-button, .submit-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .about, .why-choose-us, .services, .testimonials, .contact {
        padding: 60px 0;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .cta-button, .submit-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .feature, .service-content, .testimonial {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
}

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

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.nav a {
    position: relative;
    overflow: hidden;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(189, 76, 0, 1);
    transition: width 0.3s ease;
}

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

/* Button Hover Effects */
.cta-button, .submit-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before, .submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before, .submit-button:hover::before {
    left: 100%;
}

/* Focus States for Accessibility */
.cta-button:focus,
.submit-button:focus,
.btn-accept:focus,
.btn-decline:focus {
    outline: 2px solid rgba(189, 76, 0, 1);
    outline-offset: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Image Lazy Loading */
img {
    loading: lazy;
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .cta-button,
    .submit-button {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero,
    .about,
    .why-choose-us,
    .services,
    .testimonials,
    .contact {
        background: white !important;
        padding: 20px 0 !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    body {
        background: white;
        color: black;
    }
    
    .hero,
    .about,
    .why-choose-us,
    .services,
    .testimonials,
    .contact {
        background: white;
    }
    
    .feature,
    .service-card,
    .testimonial,
    .contact-form {
        border: 2px solid black;
    }
    
    .cta-button,
    .submit-button {
        background: black;
        color: white;
        border: 2px solid black;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }

/* Hidden class for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

::-webkit-scrollbar-track {
    background: rgba(211, 212, 170, 0.3);
}

::-webkit-scrollbar-thumb {
    background: rgba(189, 76, 0, 1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

/* Selection Styling */
::selection {
    background: rgba(255, 107, 53, 0.3);
    color: #333;
}

::-moz-selection {
    background: rgba(255, 107, 53, 0.3);
    color: #333;
} 

/* Mobile Styles for screens 480px and below */
@media (max-width: 480px) {
    /* Container and Layout */
    .container {
        padding: 0 15px;
    }

    .thank-you-section {
      padding-top: 60px !important;
    }

    .thank-you-content h1 {
      word-break: break-word;
    }

    h2 {
      word-break: break-word;
    }
    
    /* Header Mobile */
    .header {
        padding: 0.8rem 0;
    }
    
    .header .container {
        flex-wrap: wrap;
    }
    
    .logo img {
        height: 35px;
    }
    
    .mobile-menu-toggle {
        width: 30px;
        height: 25px;
    }
    
    .mobile-menu-toggle span {
        width: 100%;
        height: 2px;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
        line-height: 1.5;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 280px;
        height: auto;
    }
    
    /* Buttons Mobile */
    .cta-button, .submit-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        border-radius: 20px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
    
    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }
    
    .about h2, .services h2, .testimonials h2, .why-choose-us h2, .contact h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .about-image img {
        max-width: 250px;
        height: auto;
    }
    
    .mission-statement {
        margin-top: 2rem;
    }
    
    .mission-statement h3 {
        font-size: 1.4rem;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    /* Why Choose Us Section Mobile */
    .why-choose-us {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .feature-icon img {
        width: 50px;
        height: 50px;
    }
    
    .feature h4 {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Services Section Mobile */
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .service-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Testimonials Section Mobile */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .testimonial-avatar img {
        width: 70px;
        height: 70px;
    }
    
    .testimonial h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .testimonial p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Gallery Section Mobile */
    .gallery {
        padding: 30px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .gallery-grid img {
        height: 180px;
        border-radius: 8px;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 60px 0;
    }
    
    .contact > .container > p {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        padding: 0 10px;
    }
    
    .contact-form {
        margin: 2rem auto 0;
        padding: 1.5rem;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.95rem;
        border-radius: 6px;
    }
    
    .form-group textarea {
        min-height: 100px;
        resize: vertical;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-content {
        margin-bottom: 1.5rem;
    }
    
    .footer-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-content p {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .btn-accept, .btn-decline {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }
    
    /* Navigation Mobile Menu */
    .nav {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(211, 212, 170, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        flex-direction: column !important;
        padding: 1.5rem !important;
        gap: 1.2rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav a {
        font-size: 1.1rem;
        padding: 8px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    /* Spacing Utilities Mobile */
    .mb-1 { margin-bottom: 0.8rem; }
    .mb-2 { margin-bottom: 1.5rem; }
    .mb-3 { margin-bottom: 2rem; }
    .mb-4 { margin-bottom: 2.5rem; }
    
    .mt-1 { margin-top: 0.8rem; }
    .mt-2 { margin-top: 1.5rem; }
    .mt-3 { margin-top: 2rem; }
    .mt-4 { margin-top: 2.5rem; }
    
    /* Typography Mobile */
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.4rem; }
    h4 { font-size: 1.2rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
    
    /* Animation Performance Mobile */
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Touch Targets */
    .cta-button,
    .submit-button,
    .btn-accept,
    .btn-decline,
    .nav a,
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Input Focus Mobile */
    .form-group input:focus,
    .form-group textarea:focus {
        transform: scale(1.02);
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
    }
    
    /* Improved Readability */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Safe Area for notched devices */
    @supports (padding: max(0px)) {
        .header,
        .footer,
        .cookie-banner {
            padding-left: max(20px, env(safe-area-inset-left));
            padding-right: max(20px, env(safe-area-inset-right));
        }
        
        .cookie-banner {
            padding-bottom: max(20px, env(safe-area-inset-bottom));
        }
    }
}