@font-face {
  font-family: 'Playfair Display';
  src: url('{{ "assets/fonts/PlayfairDisplay-Regular.ttf" | theme }}') format('truetype');
  font-weight: 400;
  font-style: normal;
}


@font-face {
  font-family: 'Poppins';
  src: url('{{ "assets/fonts/Poppins-Regular.ttf" | theme }}') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('{{ "assets/fonts/Poppins-Bold.ttf" | theme }}') format('truetype');
  font-weight: 700;
  font-style: normal;
}
:root {
    --primary-color: #d4af37;
    --secondary-color: #333;
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --black: #000;
    --light-bg: #f9f9f9;
    --dark-bg: #1a1a1a;
    --gray: #ddd;
    --gray-light: #f5f5f5;
    --border-color: #e0e0e0;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
      overflow-x: hidden; 

}


html {
    scroll-behavior: smooth;
          overflow-x: hidden; 

}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.2rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: var(--font-secondary);
    font-size: 1rem;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

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

.section-title {
    position: relative;
    margin-bottom: 2rem;
}

.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;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-text {
    padding: 0;
    background: none;
    color: var(--primary-color);
    position: relative;
}

.btn-text:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.btn-text:hover:after {
    width: 100%;
}

.btn-text i {
    margin-left: 5px;
    transition: var(--transition);
}

.btn-text:hover i {
    transform: translateX(5px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 15px 0;
    transition: var(--transition);
}

.header.sticky {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

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

.logo h1 {
    font-size: 2rem;
    margin: 0;
    color: var(--primary-color);
}

.logo img {
    max-height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-item a {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
}

.nav-item a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-item a:hover:after,
.nav-item.active a:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Mobile Menu */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--white);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    padding: 80px 20px 20px;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.sidebar-menu.active {
    left: 0;
}

.sidebar-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-menu ul li a {
    color: var(--secondary-color);
    font-size: 1.1rem;
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.sidebar-menu ul li a:hover,
.sidebar-menu ul li.active a {
    color: var(--primary-color);
}

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

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.hero-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    color: var(--white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
    background-color: var(--primary-color);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active,
.hero-dot:hover {
    background-color: var(--primary-color);
}

/* ===== ABOUT SECTION ===== */
.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-preview-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-preview-image:before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary-color);
    border-radius: 8px;
    z-index: -1;
}

.about-preview-image img {
    width: 100%;
    transition: var(--transition);
}

.about-preview-image:hover img {
    transform: scale(1.05);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== FEATURED MENU SECTION ===== */
.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.menu-tab {
    padding: 10px 25px;
    background-color: var(--white);
    border: 2px solid var(--gray);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.menu-tab.active,
.menu-tab:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dish-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dish-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

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

.dish-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.dish-content {
    padding: 20px;
}

.dish-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

.dish-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dish-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.dish-rating {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Menu page specific styles */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.menu-item {
    display: flex;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.menu-item-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

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

.menu-item-content {
    padding: 15px;
    flex-grow: 1;
}

.menu-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-item-title h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.menu-item-price {
    color: var(--primary-color);
    font-weight: 600;
}

.menu-item-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.menu-item-tags {
    display: flex;
    gap: 10px;
}

.menu-tag {
    background-color: var(--light-bg);
    color: var(--text-light);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
}

.menu-category-title {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.menu-category-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

/* ===== SPECIAL OFFER SECTION ===== */
.special-offer {
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
}

.special-offer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.special-offer-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 20px;
}

.special-offer-content h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.special-offer-content h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.special-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin: 20px 0;
}

.special-price span {
    font-size: 1.2rem;
    font-weight: 400;
}

.special-description {
    margin-bottom: 30px;
}

.special-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.special-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.special-feature i {
    color: var(--primary-color);
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-overlay-content {
    text-align: center;
    color: var(--white);
}

.gallery-overlay-content h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.gallery-overlay-content i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Gallery page specific styles */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-filter {
    padding: 8px 20px;
    background-color: var(--white);
    border: 1px solid var(--gray);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.gallery-filter.active,
.gallery-filter:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--light-bg);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 30px;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-rating {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

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

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--gray);
    color: var(--secondary-color);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background-color: var(--primary-color);
}

/* Reviews page specific styles */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info h4 {
    margin-bottom: 5px;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-color);
}

.review-source {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-source i {
    color: var(--primary-color);
}

/* ===== EVENTS SECTION ===== */
.events-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.events-preview-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.events-preview-image img {
    width: 100%;
    transition: var(--transition);
}

.events-preview-image:hover img {
    transform: scale(1.05);
}

.events-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.events-feature {
    text-align: center;
}

.events-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.events-feature h4 {
    margin-bottom: 10px;
}

.events-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Events page specific styles */
.event-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.event-type {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-type-image {
    height: 200px;
    position: relative;
}

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

.event-type-content {
    padding: 25px;
}

.event-type-content h3 {
    margin-bottom: 15px;
}

.event-type-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.event-features {
    margin-bottom: 20px;
}

.event-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.event-feature i {
    color: var(--primary-color);
}

.catering-packages {
    margin-top: 60px;
}

.package-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--gray);
    margin-bottom: 40px;
}

.package-tab {
    padding: 15px 30px;
    cursor: pointer;
    font-weight: 500;
    position: relative;
}

.package-tab.active,
.package-tab:hover {
    color: var(--primary-color);
}

.package-tab:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.package-tab.active:after,
.package-tab:hover:after {
    width: 100%;
}

.package-content {
    display: none;
}

.package-content.active {
    display: block;
}

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

.package-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.package-header h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
}

.package-body {
    padding: 25px;
}

.package-features {
    margin-bottom: 25px;
}

.package-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.package-feature i {
    color: var(--primary-color);
}

/* ===== BLOG SECTION ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.blog-date .day {
    font-size: 1.2rem;
    line-height: 1;
}

.blog-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 20px;
}

.blog-category {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

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

.blog-link {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.blog-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* Blog page specific styles */
.blog-sidebar {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray);
    font-size: 1.3rem;
}

.sidebar-search {
    position: relative;
}

.sidebar-search input {
    width: 100%;
    padding: 12px 15px;
    padding-right: 50px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    transition: var(--transition);
}

.sidebar-search input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.sidebar-search button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-search button:hover {
    color: var(--primary-color);
}

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.recent-post:last-child {
    margin-bottom: 0;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.recent-post-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.recent-post-date {
    color: var(--text-light);
    font-size: 0.8rem;
}

.category-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 10px;
}

.category-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
}

.category-list a:hover {
    color: var(--primary-color);
}

.category-count {
    background-color: var(--light-bg);
    color: var(--text-light);
    padding: 2px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    background-color: var(--light-bg);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.tag-cloud a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.blog-detail-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-content-detail {
    margin-bottom: 30px;
}

.blog-content-detail p {
    margin-bottom: 20px;
}

.blog-content-detail blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    background-color: var(--light-bg);
    margin: 30px 0;
    font-style: italic;
}

.blog-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.blog-tags span {
    font-weight: 500;
}

.blog-tags a {
    background-color: var(--light-bg);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.blog-tags a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray);
}

.blog-share span {
    font-weight: 500;
}

.blog-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.blog-share a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.blog-author {
    display: flex;
    gap: 30px;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.blog-author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.blog-author-content h4 {
    margin-bottom: 10px;
}

.blog-author-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-author-social {
    display: flex;
    gap: 10px;
}

.blog-author-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.blog-author-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.blog-comments {
    margin-bottom: 40px;
}

.blog-comments h3 {
    margin-bottom: 30px;
}

.comment {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.comment:last-child {
    margin-bottom: 0;
}

.comment-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex-grow: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author h4 {
    margin-bottom: 5px;
}

.comment-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.comment-reply {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.comment-text {
    color: var(--text-color);
    margin-bottom: 0;
}

.comment-reply-form {
    margin-top: 40px;
}

.comment-reply-form h3 {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* ===== RESERVATION SECTION ===== */
.reservation {
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
}

.reservation:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.reservation-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.reservation-text h2 {
    color: var(--white);
}

.reservation-info {
    margin-top: 30px;
}

.reservation-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.reservation-info-item i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.reservation-info-item h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.reservation-info-item p {
    margin-bottom: 0;
    opacity: 0.8;
}

.reservation-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: var(--text-color);
}

.reservation-form h3 {
    text-align: center;
    margin-bottom: 20px;
}

/* ===== CONTACT SECTION ===== */
.contact-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-list {
    margin-bottom: 30px;
}

.contact-list li {
    display: flex;
    margin-bottom: 20px;
}

.contact-list li i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-list h4 {
    margin-bottom: 5px;
}

.contact-map {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact page specific styles */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-item {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.contact-info-item:hover .contact-info-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-info-item h3 {
    margin-bottom: 15px;
}

.contact-info-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-form-container {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.contact-form-container h3 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-social {
    text-align: center;
    margin-top: 40px;
}

.contact-social h3 {
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Certificate page specific styles */
.certificate-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.certificate-header {
    text-align: center;
    margin-bottom: 30px;
}

.certificate-logo {
    max-width: 150px;
    margin: 0 auto 20px;
}

.certificate-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.certificate-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.certificate-body {
    margin-bottom: 30px;
}

.certificate-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.certificate-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.certificate-detail {
    text-align: center;
}

.certificate-detail h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.certificate-detail p {
    color: var(--text-color);
    margin-bottom: 0;
}

.certificate-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray);
}

.certificate-signature {
    max-width: 150px;
    margin: 0 auto 20px;
}

.certificate-footer h4 {
    margin-bottom: 5px;
}

.certificate-footer p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Privacy Policy page specific styles */
.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.privacy-header {
    margin-bottom: 30px;
}

.privacy-header h2 {
    margin-bottom: 15px;
}

.privacy-header p {
    color: var(--text-light);
}

.privacy-section {
    margin-bottom: 30px;
}

.privacy-section h3 {
    margin-bottom: 15px;
}

.privacy-section p {
    margin-bottom: 15px;
}

.privacy-section ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.privacy-section ul li {
    margin-bottom: 10px;
}

.privacy-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--gray);
    color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 20px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-newsletter h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-newsletter h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

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

.footer-newsletter p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: var(--font-secondary);
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
    padding: 10px 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    opacity: 0.7;
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.separator {
    margin: 0 10px;
}

/* ===== BACK TO TOP BUTTON ===== */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

#back-to-top.active {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: var(--secondary-color);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border: 5px solid var(--white);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: var(--white);
    cursor: pointer;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    :root {
        --container-width: 960px;
    }
}

@media (max-width: 992px) {
    :root {
        --container-width: 720px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .about-preview-content,
    .events-preview-content,
    .contact-preview-content,
    .reservation-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .events-preview-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --container-width: 540px;
        --header-height: 70px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 4px;
    }
    
    .blog-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .blog-author-social {
        justify-content: center;
    }
    
    .comment {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .comment-header {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    :root {
        --container-width: 100%;
        --header-height: 60px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .about-features,
    .events-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .special-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .package-tabs {
        flex-direction: column;
        border-bottom: none;
    }
    
    .package-tab {
        border-bottom: 1px solid var(--gray);
    }
    
    .package-tab:after {
        display: none;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .certificate-details {
        grid-template-columns: 1fr;
    }
}
/* Events & Catering Page Styles */

/* Services Overview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(154, 125, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon .icon {
    width: 30px;
    height: 30px;
    stroke: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Event Sections */
.event-section {
    padding: 80px 0;
}

.event-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.event-content.reverse {
    direction: rtl;
}

.event-content.reverse .event-details {
    direction: ltr;
}

.event-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.event-details h3 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
}

.event-details p {
    margin-bottom: 30px;
    color: #666;
}

.event-features {
    margin-bottom: 30px;
}

.event-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    flex-shrink: 0;
    margin-right: 15px;
    color: var(--primary-color);
}

.feature-icon .icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.feature-content h4 {
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-content p {
    margin-bottom: 0;
    color: #666;
}

.event-cta {
    display: flex;
    gap: 15px;
}

/* Catering Options */
.catering-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.catering-option {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catering-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.catering-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(154, 125, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.catering-icon .icon {
    width: 30px;
    height: 30px;
    stroke: var(--primary-color);
}

.catering-option h3 {
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.catering-option p {
    color: #666;
    margin-bottom: 20px;
}

.catering-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.catering-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #666;
}

.catering-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.catering-price {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.catering-cta {
    margin-top: 40px;
}

.catering-cta p {
    margin-bottom: 20px;
    font-style: italic;
}

/* Event Spaces Gallery */
.spaces-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.space-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 300px;
}

.space-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.space-item:hover img {
    transform: scale(1.05);
}

.space-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.space-details h3 {
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.space-details p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    position: relative;
    padding-top: 30px;
    margin-bottom: 20px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 80px;
    font-family: 'Georgia', serif;
    color: rgba(154, 125, 56, 0.2);
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-author p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-toggle .icon {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #666;
    margin-bottom: 0;
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.form-success h3 {
    margin-bottom: 15px;
    color: #fff;
}

.form-success p {
    color: #fff;
    margin-bottom: 0;
}

/* Inquiry Form */
.inquiry-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 30px;
}

/* Contact CTA */
.contact-methods {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.contact-method {
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(154, 125, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-icon .icon {
    width: 30px;
    height: 30px;
    stroke: var(--primary-color);
}

.contact-method h4 {
    margin-bottom: 5px;
    font-weight: 600;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid,
    .catering-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .event-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .event-content.reverse {
        direction: ltr;
    }
    
    .spaces-gallery {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .services-grid,
    .catering-options {
        grid-template-columns: 1fr;
    }
    
    .event-cta {
        flex-direction: column;
    }
    
    .inquiry-form-container {
        padding: 20px;
    }
}
/* Burger Menu Styles */
.burger-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
}

.burger-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Sidebar Menu */
.sidebar-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.sidebar-logo img {
    height: 40px;
    width: auto;
}

.sidebar-close {
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.sidebar-close:hover {
    color: var(--primary-color);
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-nav li:last-child {
    border-bottom: none;
}

.sidebar-nav li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-nav li.active a,
.sidebar-nav li a:hover {
    background-color: rgba(154, 125, 56, 0.1);
    color: var(--primary-color);
    padding-left: 25px;
}

.sidebar-cta {
    padding: 20px;
    margin-top: 20px;
    border-top: 1px solid #eee;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .burger-menu-toggle {
        display: flex;
    }
    
    /* Animate burger to X when active */
    .burger-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .burger-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 576px) {
    .sidebar-menu {
        width: 280px;
    }
}