/* ========================================
   МИР ПЛОВУ - MAIN STYLES
   Східна кухня з любов'ю
   ======================================== */
@import url('responsive.css');
/* ========================================
   1. CSS VARIABLES
   ======================================== */
:root {
    --emerald-deep: #1B5E52;
    --emerald: #2D8B7C;
    --emerald-light: #4FA896;
    --teal-dark: #1d4235;
    --gold: #D4AF37;
    --gold-light: #ECC94B;
    --gold-dark: #B8941F;
    --cream: #FDF8F3;
    --white: #FFFFFF;
    --beige: #F5EFE7;
    --text-dark: #1A3A34;
    --light-green: #f4f4f4;
    --addition-color: #e8d493;
    --gold-shadow: 0 0 30px rgba(236, 201, 75, 0.5);
    --cream-shadow: 0 0 30px rgba(253, 248, 243, 0.3);
}

/* ========================================
   2. RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

/* ========================================
   3. HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 52, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(27, 94, 82, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header.header-visible {
    transform: translateY(0);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    transition: color 0.3s;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--addition-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s, transform 0.3s;
}

.nav-link:hover {
    color: var(--emerald);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

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

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--emerald-deep);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========================================
   4. BUTTONS
   ======================================== */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--emerald-deep);
    color: white;
    box-shadow: 0 4px 15px rgba(27, 94, 82, 0.2);
}

.btn-primary:hover {
    background: var(--emerald);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(27, 94, 82, 0.4);
}

/* ========================================
   5. HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background-image: url('img/background4.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle, var(--emerald-deep) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-arch-frame {
    position: relative;
    padding: 60px 0;
}

.arch-decoration {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 1));
}

.hero-text {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: var(--gold-shadow);
    color: var(--gold-light);
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--emerald-light);
    position: relative;
    text-shadow: var(--cream-shadow);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--emerald);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-ornaments .ornament {
    position: absolute;
    border-radius: 50%;
    opacity: 0.9;
}

.ornament-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -50px;
    background: radial-gradient(circle, var(--gold), transparent);
    animation: float 6s ease-in-out infinite;
}

.ornament-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: -100px;
    background: radial-gradient(circle, var(--emerald), transparent);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ========================================
   6. TAPE DECORATIONS
   ======================================== */
.tape {
    margin: 0;
    padding: 0;
}

.tape img {
    width: 100%;
}

/* ========================================
   7. PARALLAX VIDEO
   ======================================== */
.parallax-video {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    transition: opacity 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* ========================================
   8. SECTIONS - GENERAL
   ======================================== */
section {
    padding: 100px 0;
    position: relative;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--emerald-deep);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(27, 94, 82, 0.1);
}

.title-ornament {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Section Titles with Ornamental Frame */
.about .section-title,
.menu .section-title,
.gallery .section-title,
.values .section-title,
.contacts .section-title {
    background: linear-gradient(135deg, rgba(27, 94, 82, 0.95), rgba(29, 66, 53, 0.95));
    color: var(--gold-light);
    padding: 25px 80px;
    display: inline-block;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--gold);
    border-left: none;
    border-right: none;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 40px rgba(212, 175, 55, 0.2);
}

.about .section-title::before,
.menu .section-title::before,
.gallery .section-title::before,
.values .section-title::before, 
.contacts .section-title::before {
    content: '';
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    background-image: url('img/title-l.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.4)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.about .section-title::after,
.menu .section-title::after,
.gallery .section-title::after,
.values .section-title::after,
.contacts .section-title::after {
    content: '';
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    background-image: url('img/title-r.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center left;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.4)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

/* ========================================
   9. ABOUT SECTION
   ======================================== */
.about {
    background-image: url('img/about_bg1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

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

/* Orbital Gallery */
.arch-frame {
    position: relative;
}

.image-content {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.orbital-gallery {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-center {
    position: absolute;
    z-index: 10;
}

.center-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--beige), var(--cream));
    border: 4px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.center-image.active {
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.6);
    border-color: var(--gold-light);
}

.orbit-items {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateOrbit 20s linear infinite;
}

@keyframes rotateOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.orbital-gallery:hover .orbit-items {
    animation-play-state: paused;
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
}

.orbit-item:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg); }
.orbit-item:nth-child(2) { transform: translate(-50%, -50%) rotate(72deg); }
.orbit-item:nth-child(3) { transform: translate(-50%, -50%) rotate(144deg); }
.orbit-item:nth-child(4) { transform: translate(-50%, -50%) rotate(216deg); }
.orbit-item:nth-child(5) { transform: translate(-50%, -50%) rotate(288deg); }

.connection-line {
    position: absolute;
    top: -215px;
    left: 50%;
    width: 2px;
    height: 215px;
    background: var(--gold);
    opacity: 0.3;
    transform: translateX(-50%);
    pointer-events: none;
}

.orbit-image {
    position: absolute;
    top: -275px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--beige), var(--cream));
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(27, 94, 82, 0.2);
}

.orbit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(0deg);
    animation: keepUpright 20s linear infinite;
}

@keyframes keepUpright {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.orbital-gallery:hover .orbit-image img {
    animation-play-state: paused;
}

.orbit-image:hover {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
    border-color: var(--gold-light);
    z-index: 5;
}

/* About Text */
.about-text {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 239, 231, 0.95));
    padding: 40px;
    border-radius: 25px;
    box-shadow: 
        0 10px 40px rgba(27, 94, 82, 0.2),
        inset 0 0 30px rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--emerald-deep);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.about-heading::after {
    content: '✦';
    display: block;
    text-align: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 10px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* ========================================
   10. VALUES SECTION
   ======================================== */
.values {
    background-image: 
        linear-gradient(to bottom, rgb(234, 220, 190) 0%, rgba(234, 220, 190, 0.8) 30%, rgba(234, 220, 190, 0.3) 50%, rgba(255, 255, 255, 0) 100%),
        url('img/section_bg_full.png');
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 20px;
}

.value-card-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s, filter 0.4s;
    background-image: url('img/advantages.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 400px;
}

.value-card-wrapper:hover {
    transform: translateY(-15px);
    filter: drop-shadow(0 20px 40px rgba(27, 94, 82, 0.2));
}

.value-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 30px 60px;
    background: transparent;
    border-radius: 20px;
    transition: all 0.4s;
    width: 100%;
    max-width: 240px;
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    transition: transform 0.4s;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.value-card-wrapper:hover .value-icon {
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.6));
}

.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 12px;
    transition: color 0.3s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.value-card-wrapper:hover .value-title {
    color: var(--gold-light);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.value-text {
    color: var(--cream);
    font-size: 1rem;
    transition: color 0.3s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.value-card-wrapper:hover .value-text {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ========================================
   11. MENU SECTION
   ======================================== */
.menu {
    background-image: url('img/menu_bg2.png');
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
    position: relative;
}

.menu-category {
    margin-bottom: 80px;
}

.menu-category:last-of-type {
    margin-bottom: 40px;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.menu-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 239, 231, 0.95));
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(27, 94, 82, 0.1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(27, 94, 82, 0.3);
    border-color: var(--gold);
}

.menu-item-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.menu-item-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.menu-item:hover .menu-item-image::after {
    opacity: 1;
}

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

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

.menu-item-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 15px;
    flex-wrap: nowrap;
}

.menu-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--emerald-deep);
    margin: 0;
    transition: color 0.3s;
    flex-shrink: 1;
}

.menu-item:hover .menu-item-title {
    color: var(--gold);
}

.menu-item-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gold);
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.menu-item-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

/* ========================================
   12. HALAL SECTION
   ======================================== */
.halal {
    background: url('img/background1.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

.halal-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.halal-badge-wrapper {
    position: relative;
    transition: transform 0.5s, filter 0.5s;
}

.halal-badge-wrapper:hover {
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
}

.badge-arch {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

.halal-badge-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.halal-star {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.halal-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.halal-certified {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.halal .section-title {
    color: white;
}

.halal-subtitle {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

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

.halal-features {
    list-style: none;
}

.halal-features li {
    padding: 12px 0;
    font-size: 1.1rem;
    transition: transform 0.3s, text-shadow 0.3s;
}

.halal-features li:hover {
    transform: translateX(15px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.halal-features span {
    color: var(--gold);
    margin-right: 15px;
    font-weight: 700;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ========================================
   13. CONTACTS SECTION
   ======================================== */
.contacts {
    background-image: url('img/about_bg2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    color: white;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

.section-title-white {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--emerald-deep);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: linear-gradient(135deg, var(--text-dark), var(--emerald-deep));
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-card:hover {
    background: var(--emerald-deep);
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.4));
    transition: transform 0.3s;
}

.contact-card:hover .contact-icon {
    transform: scale(1.2) rotate(10deg);
}

.contact-content h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.contact-content p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-content a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-content a:hover {
    color: var(--gold);
}

.contact-social {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--emerald-deep), var(--emerald));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.social-link:hover::before {
    width: 300px;
    height: 300px;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--emerald-deep);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.social-icon {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.social-link span {
    position: relative;
    z-index: 1;
}

.map-container {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s, box-shadow 0.4s;
}

.map-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

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

.footer-ornament {
    height: 4px;
    background: linear-gradient(to right, var(--emerald), var(--gold), var(--emerald));
    margin-bottom: 40px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-info {
    font-size: 14px;
    font-style: italic;
}
