/* Studio 76 Ringmer - Main Stylesheet */

:root {
    --primary-color: #c9a227;
    --primary-dark: #a68520;
    --secondary-color: #1a1a1a;
    --dark-bg: #0d0d0d;
    --light-bg: #f5f5f5;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-muted: #888888;
    --border-color: rgba(201, 162, 39, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Navbar */
.navbar {
    background-color: rgba(13, 13, 13, 0.95);
    padding: 15px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: rgba(13, 13, 13, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.brand-sub {
    font-size: 0.8rem;
    color: var(--text-muted) !important;
    letter-spacing: 3px;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-book {
    background-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    border-radius: 25px;
    margin-left: 10px;
}

.btn-book:hover {
    background-color: var(--primary-dark) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    padding: 12px 30px;
}

.btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #0d0d0d; background-size: cover; background-position: center; background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23c9a227" stroke-width="0.5" opacity="0.1"/></svg>') center center;
    background-size: 200px 200px;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(13, 13, 13, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background-color: #0d0d0d; background-size: cover; background-position: center; background-attachment: fixed;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 15px;
}

.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

/* Welcome Section */
.welcome-section {
    background-color: var(--dark-bg);
}

.welcome-image,
.passion-image,
.about-image {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.image-placeholder.dark {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: var(--primary-color);
    border: 2px solid var(--border-color);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
}

.image-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Services Section */
.services-section {
    background-color: var(--secondary-color);
}

.service-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(201, 162, 39, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.service-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Passion Section */
.passion-section {
    background-color: var(--dark-bg);
}

/* Book Section */
.book-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--secondary-color);
}

.book-section .section-title {
    color: var(--secondary-color);
}

.book-section .section-title::after {
    background-color: var(--secondary-color);
}

.book-section .lead {
    color: var(--secondary-color);
    opacity: 0.9;
}

.book-section .btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

.book-section .btn-primary:hover {
    background-color: #2a2a2a;
    border-color: #2a2a2a;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--secondary-color);
}

.testimonial-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    border: 1px solid var(--border-color);
}

.testimonial-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--primary-color);
}

/* Products Section */
.products-section {
    background-color: var(--dark-bg);
}

.brand-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.brand-logo {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 20px 40px;
    border-radius: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

/* Visit Section */
.visit-section {
    background-color: var(--secondary-color);
}

.visit-info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    flex-shrink: 0;
}

.info-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
    margin: 0;
}

/* Contact Form */
.contact-form .form-control {
    background-color: #2a2a2a;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 15px;
    border-radius: 5px;
}

.contact-form .form-control:focus {
    background-color: #333;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.25);
    color: var(--text-light);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form .form-label {
    color: var(--text-light);
    margin-bottom: 8px;
}

/* Coverage Section */
.coverage-section {
    background-color: #0d0d0d; background-size: cover; background-position: center; background-attachment: fixed;
    padding: 60px 0;
}

.coverage-subtitle {
    color: var(--text-muted);
    font-size: 1.3rem;
    font-weight: 400;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-title {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list li span {
    color: var(--text-light);
    font-weight: 600;
}

.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    padding: 8px 0;
}

.quick-links li a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.quick-links li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
}

/* Services Page */
.services-content {
    background-color: var(--dark-bg);
}

.price-category {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.category-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.category-title i {
    margin-right: 15px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
}

.price-item:last-child {
    border-bottom: none;
}

.service-name {
    color: var(--text-light);
    font-weight: 500;
}

.service-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Contact Page */
.contact-content {
    background-color: var(--dark-bg);
}

.contact-info {
    margin-top: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    flex-shrink: 0;
}

.info-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-card p {
    color: var(--text-muted);
    margin: 0;
}

.info-card a {
    color: var(--text-muted);
}

.info-card a:hover {
    color: var(--primary-color);
}

.social-section h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--primary-dark);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.map-section {
    margin-top: 40px;
}

/* Booking Page */
.booking-content {
    background-color: var(--dark-bg);
}

.booking-form-wrapper {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.booking-form .form-control,
.booking-form .form-select {
    background-color: #1a1a1a;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 15px;
    border-radius: 5px;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    background-color: #222;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.25);
    color: var(--text-light);
}

.booking-form .form-label {
    color: var(--text-light);
    margin-bottom: 8px;
    text-align: left;
    display: block;
}

.booking-info {
    margin-top: 40px;
}

.info-box {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.info-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-box h4 {
    color: var(--text-light);
    margin-bottom: 10px;
}

.info-box p {
    color: var(--text-muted);
    margin: 0;
}

.info-box a {
    color: var(--primary-color);
}

/* About Page */
.about-content {
    background-color: var(--dark-bg);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cta-section .lead {
    color: var(--secondary-color);
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: #2a2a2a;
    border-color: #2a2a2a;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .price-category {
        padding: 25px;
    }
    
    .booking-form-wrapper {
        padding: 25px;
    }
    
    .welcome-image,
    .passion-image,
    .about-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
/* Hero with Background Image */
.hero[style*="background-image"] .hero-overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* Passion Section */
.passion-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.passion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.passion-section .container {
    position: relative;
    z-index: 2;
}

/* Coverage Section */
.coverage-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.coverage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
}

.coverage-section .container {
    z-index: 2;
}

/* Service Cards with Images */
.service-card .service-image {
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    margin: -20px -20px 20px -20px;
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

/* Welcome Image */
.welcome-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* Brand Logos */
.brand-logo-img {
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.brand-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Page Header with Background */
.page-header {
    position: relative;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.page-header .container {
    position: relative;
    z-index: 2;
}
