/* Elegant Style - Blinds and Curtains Website */
:root {
    --primary-dark: #6F5B42;
    --primary-medium: #B5A892;
    --primary-light: #D2D2D1;
    --accent: #6F5B42;
    --accent-light: #B5A892;
    --bg-light: #f8f7f5;
    --bg-white: #ffffff;
    --text-dark: #2c2c2c;
    --text-medium: #5a5a5a;
    --border-color: #e8e6e3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Split Screen Layout */
.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    gap: 1px;
}

.split-left, .split-right {
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.split-left {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    border-right: 1px solid var(--border-color);
}

.split-right {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border-left: 1px solid var(--border-color);
}

/* Header Styles */
header {
    background: var(--bg-white);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(111, 91, 66, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: inline-block;
    height: 50px;
    transition: opacity 0.3s;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 200px;
    display: block;
    border: none;
    box-shadow: none;
}

.logo:hover {
    opacity: 0.8;
}

.logo:hover img {
    transform: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
    font-weight: 400;
    white-space: nowrap;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-dark);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-dark);
}

nav a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(111, 91, 66, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    flex-direction: column;
    gap: 1rem;
}

/* Hero Interactive Slider */
.hero-slider {
    position: relative;
    height: 80vh;

    margin: 2rem 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(111, 91, 66, 0.15);
    border-radius: 4px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(111, 91, 66, 0.85), transparent);
    padding: 3rem;
    z-index: 3;
}

.slide-content h1 {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
    animation: slideInUp 0.8s ease-out;
    font-weight: 400;
    font-style: italic;
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-content p {
    color: var(--primary-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--bg-white);
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--bg-white);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--bg-white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--bg-white);
}

/* Sections */
section {
    padding: 5rem 2rem;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    color: var(--primary-dark);
}

.section-container p {
    color: var(--primary-dark);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--primary-medium);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 4px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(111, 91, 66, 0.08);
}

.card:hover {
    border-color: var(--primary-medium);
    box-shadow: 0 8px 25px rgba(111, 91, 66, 0.15);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    display: block;
    transition: color 0.3s;
}

.card:hover .card-icon {
    color: var(--primary-medium);
}

.card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
}

.card p {
    color: var(--primary-dark);
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: var(--bg-white);
    border-color: var(--primary-dark);
}

.btn-primary {
    background: var(--primary-dark);
    color: #ffffff;
    border-color: var(--primary-dark);
}

.btn-primary::before {
    background: var(--primary-medium);
}

.btn-primary:hover {
    background: var(--primary-medium);
    color: #ffffff;
    border-color: var(--primary-medium);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    border-radius: 4px;
}

img:hover {
    border-color: var(--primary-medium);
    box-shadow: 0 4px 15px rgba(111, 91, 66, 0.2);
    transform: scale(1.02);
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

/* Footer */
footer {
    background: var(--primary-dark);
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    color: var(--primary-light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--primary-light);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

.footer-section p {
    color: var(--primary-light);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(181, 168, 146, 0.3);
    color: var(--primary-light);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 2px solid var(--primary-dark);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(111, 91, 66, 0.15);
}

.cookie-banner.active {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
    color: var(--text-dark);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-dark);
}

.contact-item .material-icons {
    color: var(--primary-dark);
    font-size: 2rem;
}

/* Google Maps */
.map-container {
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(111, 91, 66, 0.1);
    overflow: hidden;
    border-radius: 4px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Content Pages */
.content-page {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    min-height: 60vh;
}

.content-page h1 {
    color: var(--primary-dark);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-style: italic;
}

.content-page h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    border-left: 4px solid var(--primary-medium);
    padding-left: 1.5rem;
    font-weight: 400;
    font-style: italic;
}

.content-page p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--text-medium);
}

.content-page ul, .content-page ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-medium);
}

.content-page li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.content-page a {

    text-decoration: underline;
    transition: color 0.3s;
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .split-container {
        grid-template-columns: 1fr;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-slider {
        height: 50vh;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .content-page > div[style*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .map-container iframe {
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    
    .logo {
        height: 40px;
    }
    
    .hero-slider {
        height: 40vh;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .card {
        padding: 2rem;
    }
    
    .content-page {
        padding: 2rem 1rem;
    }
    
    .content-page h1 {
        font-size: 2rem;
    }
    
    .content-page h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 320px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .logo {
        height: 35px;
    }
    
    .hero-slider {
        height: 35vh;
    }
    
    .slide-content h1 {
        font-size: 1.3rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    section {
        padding: 2rem 0.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        padding: 1rem;
    }
    
    .content-page {
        padding: 1.5rem 0.5rem !important;
    }
    
    .content-page h1 {
        font-size: 1.6rem !important;
    }
    
    .content-page h2 {
        font-size: 1.4rem !important;
    }
    
    .map-container iframe {
        height: 250px !important;
    }
    
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    select,
    textarea {
        font-size: 14px !important;
        padding: 0.7rem !important;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    animation: fadeIn 0.6s ease-out;
}

/* Contact Grid Responsive */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Form Styles */
input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 0.9rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: all 0.3s;
    border-radius: 4px;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    background: var(--bg-white);
}

/* Images Grid for Content Pages */
.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.images-grid img {
    width: 100%;
    height: auto;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s;
}

.images-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.images-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .images-grid-2,
    .images-grid-3 {
        grid-template-columns: 1fr;
    }
}

.content-page img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin: 1.5rem 0;
    transition: all 0.3s;
}

.content-page img:hover {
    border-color: var(--primary-medium);
    box-shadow: 0 4px 15px rgba(111, 91, 66, 0.2);
    transform: scale(1.02);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.p-2 { padding: 2rem; }
