/* ========================================
   ROREF RESTAURANT - CUSTOM STYLES
   ======================================== */

/* Root Variables */
:root {
    --primary-color: #c9a961;
    --primary-dark: #b8964e;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border-color: #dee2e6;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.3);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.accent-text {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-color);
    font-weight: 700;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.page-title {
    font-size: 3.5rem;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


/* Buttons */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #a08142);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--text-white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.8);
    color: rgba(255,255,255,0.9);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-white);
    border-color: var(--text-white);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--text-dark), var(--secondary-color));
    color: var(--text-white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

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

.cookie-actions .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    padding: 15px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
}

.navbar-brand .brand-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.dropdown-menu {
    background: var(--text-white);
    border: none;
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius);
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.6), rgba(201, 169, 97, 0.3));
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-white);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    margin-top: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--text-white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Page Headers */
.page-header {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(201, 169, 97, 0.4));
}

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

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.decorative-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(201, 169, 97, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(44, 62, 80, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

section .container{
    position: relative;
    z-index: 4;
}
/* Featured Dishes */
.featured-dishes {
    background: var(--bg-light);
    position: relative;
}

.dish-card {
    background: var(--text-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.dish-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.dish-content {
    padding: 25px;
    text-align: center;
}

.dish-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.dish-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.dish-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.carousel-indicators {
    margin-bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background: var(--primary-color);
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(44, 62, 80, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

/* Special Offers - Parallax Section */
.parallax-section {
    position: relative;
    overflow: hidden;
    color: var(--text-white);
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 150%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(201, 169, 97, 0.6));
    z-index: 2;
}

.special-offers .container {
    position: relative;
    z-index: 3;
}

.offer-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.offer-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.offer-price {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.offer-price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.offer-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
}

.offer-features .feature i {
    color: var(--primary-color);
    margin-right: 15px;
    width: 20px;
}

.service-highlight {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.service-highlight h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-price {
    margin: 30px 0;
}

.price-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.price-amount {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
}

.price-unit {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 10px;
}

/* Testimonials */
.testimonials {
    background: var(--text-white);
    position: relative;
}

.testimonial-bg {
    background: linear-gradient(135deg, var(--bg-light), rgba(201, 169, 97, 0.05));
}

.testimonial-card {
    background: var(--text-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: var(--primary-color);
    margin-right: 3px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.author-info h5 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Reservations */
.reservations {
    background: linear-gradient(135deg, var(--bg-light), rgba(201, 169, 97, 0.1));
    padding: 100px 0;
}

.reservation-content {
    padding-right: 30px;
}

.reservation-features {
    margin: 30px 0;
}

.reservation-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.reservation-features .feature i {
    color: var(--primary-color);
    margin-right: 15px;
    width: 25px;
}

.reservation-form-card {
    background: var(--text-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 12px 15px;
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.25);
}

/* Gallery */
.gallery {
    background: var(--text-white);
    padding: 100px 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.8), rgba(201, 169, 97, 0.6));
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    background: var(--text-dark);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--text-dark), var(--secondary-color));
    z-index: 1;
}

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

.stat-item {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 60px 0 20px;
    position: relative;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--text-dark), var(--secondary-color));
    z-index: 1;
}

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

.footer-brand h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

.footer-links h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
    width: 20px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 0;
}

.footer-copyright a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* About Page Specific Styles */
.restaurant-story {
    padding: 100px 0;
    background: var(--text-white);
}

.story-content {
    padding-right: 30px;
}

.story-content .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 400;
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.story-highlights {
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.highlight-item i {
    color: var(--primary-color);
    margin-right: 15px;
    width: 25px;
}

.story-image-container {
    position: relative;
}

.story-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    z-index: -1;
}

.philosophy-section {
    background: var(--bg-light);
    position: relative;
}

.philosophy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light), rgba(201, 169, 97, 0.05));
}

.philosophy-card {
    background: var(--text-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--text-white);
    font-size: 2rem;
}

.philosophy-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.philosophy-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    background: var(--text-white);
    padding: 100px 0;
}

.team-member {
    background: var(--text-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.member-photo {
    position: relative;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .team-image {
    transform: scale(1.05);
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
}

.member-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.member-social .social-link {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
}

.awards-section {
    background: var(--text-dark);
    color: var(--text-white);
    position: relative;
}

.awards-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--text-dark), var(--secondary-color));
}

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

.award-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.award-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.award-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--text-white);
    font-size: 2rem;
}

.award-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.award-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.award-year {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--bg-light), rgba(201, 169, 97, 0.1));
    padding: 100px 0;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    margin-top: 30px;
}

/* Contact Page Specific Styles */
.contact-info-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.contact-info-card {
    background: var(--text-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--text-white);
    font-size: 2rem;
}

.contact-info-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-main-section {
    padding: 100px 0;
    background: var(--text-white);
}

.contact-form-wrapper {
    padding-right: 30px;
}

.contact-form {
    background: var(--text-white);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.map-wrapper {
    padding-left: 30px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    margin-bottom: 30px;
}

.location-features {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 15px;
    width: 20px;
}

.services-section {
    background: var(--bg-light);
    position: relative;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light), rgba(201, 169, 97, 0.05));
}

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

.service-card {
    background: var(--text-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--text-white);
    font-size: 2rem;
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-pricing {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
}

.price-from {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.service-pricing .price-amount {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
}

.service-pricing .price-unit {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 5px;
}

.service-features {
    margin-top: 25px;
}

.service-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-features .feature i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 15px;
    font-size: 0.8rem;
}

.faq-section {
    padding: 100px 0;
    background: var(--text-white);
}

.accordion-item {
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: var(--text-white);
    border: none;
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(201, 169, 97, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 25px 30px;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
}

/* Form Validation */
.was-validated .form-control:invalid {
    border-color: var(--accent-color);
}

.was-validated .form-control:valid {
    border-color: #28a745;
}

.invalid-feedback {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Alert Styles */
.alert {
    border-radius: var(--border-radius);
    border: none;
    padding: 15px 20px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: rgba(231, 76, 60, 0.1);
    color: #721c24;
    border-left: 4px solid var(--accent-color);
}

/* Policy Pages */
.policy-content {
    background: var(--text-white);
    padding: 60px 0;
    margin-top: 80px;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.policy-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.policy-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-dark);
}

.policy-content ul, .policy-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-dark);
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

.policy-content .contact-info {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .offer-content,
    .service-highlight {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .page-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .reservation-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .story-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-form-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .map-wrapper {
        padding-left: 0;
    }
    
    .parallax-bg {
        background-attachment: scroll;
    }
    
    .navbar-nav {
        background: rgba(255, 255, 255, 0.98);
        padding: 20px;
        border-radius: var(--border-radius);
        margin-top: 10px;
        box-shadow: var(--shadow-light);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .offer-title {
        font-size: 2rem;
    }
    
    .offer-price {
        font-size: 2.5rem;
    }
    
    .service-highlight h3 {
        font-size: 1.8rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .service-pricing .price-amount {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .gallery-item.large,
    .gallery-item.tall {
        grid-row: span 1;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .contact-info-section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .navbar-brand .brand-text {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .offer-content,
    .service-highlight {
        padding: 25px;
    }
    
    .testimonial-card,
    .reservation-form-card,
    .philosophy-card,
    .contact-info-card,
    .service-card {
        padding: 30px 25px;
    }
    
    .member-info {
        padding: 25px;
    }
    
    .award-card {
        padding: 30px 25px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .contact-icon,
    .service-icon,
    .philosophy-icon,
    .award-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-brand h3 {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .hero-section,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    p, li {
        orphans: 3;
        widows: 3;
    }
    
    .page-header {
        margin-top: 0;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
}

/* Focus States for Better Accessibility */
button:focus,
.btn:focus,
.form-control:focus,
.form-check-input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --text-dark: #000000;
        --text-white: #ffffff;
        --border-color: #000000;
    }
    
    .btn-outline-primary,
    .btn-outline-light {
        border-width: 3px;
    }
}