/* CSS Variables for consistent theming */
:root {
    --primary-color: #2c1810;
    --secondary-color: #8b4513;
    --accent-color: #d4a574;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #f8f8f8;
    --background-dark: #1a1a1a;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: bold;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Header & Navigation */
.header {
    background-color: var(--primary-color);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 60px;
}

.navbar {
    padding: 0.75rem 0;
    height: 100%;
    display: flex;
    align-items: center;
}

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

.nav-logo h1 {
    color: var(--text-light);
    margin: 0;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}

/* Main Content */
main {
    margin-top: 60px; /* Account for fixed header */
    min-height: calc(100vh - 60px);
}

/* Hero Section */
.hero {
    background: url('../images/Home Background.png');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    color: var(--text-light);
    padding: 120px 0 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-content {
    padding-bottom: 0;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 6rem;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--background-light);
}

.features h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Gallery Page */
.gallery-showcase {
    padding: 80px 0;
    background: linear-gradient(160deg, #eef3ff 0%, #d9e4ff 45%, #c5d6ff 100%);
}

.slideshow-card {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 26px;
    box-shadow: 0 24px 60px rgba(31, 45, 91, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 3rem 3rem 2.5rem;
}

.slideshow-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #4060a6, #1f2f52);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.45);
}

#slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
}

.slide.active {
    display: flex;
}

.slideshow-frame img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 16px 40px rgba(12, 21, 41, 0.35);
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px rgba(18, 28, 53, 0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 2;
}

.arrow-left {
    left: -30px;
}

.arrow-right {
    right: -30px;
}

.slide-arrow span {
    font-size: 1.6rem;
    color: #2c3a5f;
    font-weight: 700;
}

.slide-arrow:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.08);
}

.slide-arrow:hover span {
    color: #ffffff;
}

.slide-arrow:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 4px;
}

.slide-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.slide-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: rgba(64, 96, 166, 0.35);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.slide-dot:hover {
    transform: scale(1.15);
    background: rgba(64, 96, 166, 0.7);
}

.slide-dot.active {
    background: var(--accent-color);
    transform: scale(1.25);
    box-shadow: 0 6px 15px rgba(93, 45, 145, 0.35);
}

.slide-dot:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Product Range Section */
.product-range {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.product-range h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.range-intro {
    text-align: center;
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.product-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(128, 0, 128, 0.2);
    border-color: var(--accent-color);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.product-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.product-item p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.range-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.1), rgba(75, 0, 130, 0.1));
    border-radius: 15px;
}

.range-cta p {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.range-cta .cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(128, 0, 128, 0.3);
}

.range-cta .cta-button:hover {
    background: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(128, 0, 128, 0.4);
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text ul {
    margin: 2rem 0;
    padding-left: 2rem;
}

.about-text li {
    margin-bottom: 0.5rem;
}

/* Team Section */
.team-section {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.team-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.team-section p {
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.team-grid.single-member {
    grid-template-columns: minmax(280px, 400px);
    justify-content: center;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.team-photo {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    transition: var(--transition);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.team-info p {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: bold;
}

.team-specialty {
    color: var(--text-dark);
    font-style: italic;
    font-size: 0.9rem;
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3,
.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-method p {
    margin-bottom: 0;
}

/* Contact Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 5px rgba(212, 165, 116, 0.3);
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Map Links */
.map-link {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    margin: 2px 0;
    font-weight: bold;
    transition: var(--transition);
}

.map-link:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Map Embed */
.map-embed {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-embed iframe {
    display: block;
    border-radius: 10px;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background-color: var(--background-light);
    margin-top: 2rem;
}

.reviews-section h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Rating Highlight */
.rating-highlight {
    text-align: center;
    margin-bottom: 3rem;
}

.overall-rating {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 3px solid var(--accent-color);
}

.rating-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.rating-stars {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: #ffd700;
}

.rating-count {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: bold;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stars {
    font-size: 1.2rem;
    color: #ffd700;
}

.review-source {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.review-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-author {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 0;
}

.reviews-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.review-link {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.review-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Instagram Section */
.instagram-section {
    background: var(--background-color);
    padding: 80px 0;
    text-align: center;
}

.instagram-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.instagram-section p {
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.instagram-embed {
    max-width: 540px;
    margin: 0 auto;
}

/* Social Links */
.social-link {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid var(--secondary-color);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .features h3 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-links {
        flex-direction: column;
        align-items: center;
    }
    
    .review-link {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .nav-logo h1 {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery responsive */
    .slideshow-card {
        padding: 2.5rem 2rem 2rem;
    }
    
    .slideshow-frame {
        padding: 1rem;
    }
    
    .slide-arrow {
        width: 52px;
        height: 52px;
    }
    
    .arrow-left {
        left: -24px;
    }
    
    .arrow-right {
        right: -24px;
    }
    
    .slide-arrow span {
        font-size: 1.3rem;
    }
    
    /* Product range responsive */
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-range h2 {
        font-size: 2rem;
    }
    
    .range-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .features,
    .products,
    .about-content,
    .contact-content {
        padding: 60px 0;
    }
    
    /* Gallery mobile */
    .slideshow-card {
        padding: 2rem 1.5rem 1.75rem;
    }
    
    .slideshow-frame {
        padding: 0.75rem;
        aspect-ratio: 4 / 3;
    }
    
    .slide-arrow {
        width: 44px;
        height: 44px;
    }
    
    .arrow-left {
        left: -20px;
    }
    
    .arrow-right {
        right: -20px;
    }
    
    .slide-arrow span {
        font-size: 1.1rem;
    }
    
    /* Product range mobile */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-range {
        padding: 60px 0;
    }
    
    .product-range h2 {
        font-size: 1.8rem;
    }
    
    .range-intro {
        font-size: 1rem;
    }
    
    .range-cta p {
        font-size: 1.1rem;
    }
}

/* 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; }

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