/* Lajolica Coffee - Modern Multi-Page Website Styles */

/* CSS Variables */
:root {
    --primary-color: #d4a574;
    --secondary-color: #2c1810;
    --accent-color: #f4e4bc;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #666666;
    --bg-dark: #0f0f0f;
    --bg-light: #faf8f5;
    --gradient-primary: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    --gradient-dark: linear-gradient(135deg, #152943 0%, #152943 100%);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.3);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
}

/* New Creative Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: none;
}

.nav-container {
    position: relative;
    width: 100%;
    height: 100vh;
    pointer-events: none;
}

/* Floating Logo - Stunning Entrance Animation */
.floating-logo {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%) scale(0.6) perspective(800px) rotateY(180deg);
    transform-style: preserve-3d;
    z-index: 1001;
    pointer-events: all;
    cursor: pointer;
    opacity: 0;
    animation: coolLogoEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    background: none !important;
    animation: logoGlow 2s ease-in-out infinite;
}

.navbar-logo {
    width: 125px;
    height: 125px;
    object-fit: contain;
    z-index: 2;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%) translateZ(-1px);
    pointer-events: none;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    opacity: 0;
    animation: logoPulse 2s ease-in-out infinite;
}

/* Cool hover effect */
.floating-logo:hover .logo-wrapper {
    transform: scale(1.1);
}

.floating-logo:hover .navbar-logo {
    filter: 
        drop-shadow(-10px 10px 20px rgba(0, 0, 0, 0.3))
        drop-shadow(0 20px 30px rgba(212, 165, 116, 0.2))
        brightness(1.1)
        contrast(1.1);
    transform: translateZ(20px);
}

/* Click animation */
.floating-logo:active .logo-wrapper {
    transform: 
        perspective(800px)
        rotateY(-5deg)
        rotateX(2deg)
        scale(0.95);
    transition: transform 0.1s;
}

/* Cool Logo Entrance Animation */
@keyframes coolLogoEntrance {
    0% {
        transform: translateX(-50%) scale(0.6) perspective(800px) rotateY(180deg);
        transform: translateX(-50%) scale(0.6) perspective(800px) rotateY(180deg) translateZ(-100px);
        opacity: 0;
        filter: blur(10px);
    }
    50% {
        transform: translateX(-50%) scale(1.1) perspective(800px) rotateY(-10deg) translateZ(50px);
        opacity: 0.7;
        filter: blur(5px);
    }
    75% {
        transform: translateX(-50%) scale(0.95) perspective(800px) rotateY(5deg) translateZ(0);
        opacity: 0.9;
        filter: blur(0);
    }
    100% {
        transform: translateX(-50%) scale(1) perspective(800px) rotateY(0) translateZ(0);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(212, 165, 116, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(212, 165, 116, 0.7));
    }
}

/* Magic Pulse Animation */
@keyframes magicPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(0.8); 
        opacity: 0;
    }
    25% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.4); 
        opacity: 0.6;
    }
    75% {
        transform: translate(-50%, -50%) scale(1.7);
        opacity: 0.2;
    }
}

/* Logo Click Spin Animation */
@keyframes logoSpin {
    0% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 10px 30px rgba(212, 165, 116, 0.3));
    }
    25% {
        transform: scale(1.2) rotate(90deg);
        filter: drop-shadow(0 15px 35px rgba(212, 165, 116, 0.5)) hue-rotate(30deg);
    }
    50% {
        transform: scale(0.9) rotate(180deg);
        filter: drop-shadow(0 20px 40px rgba(212, 165, 116, 0.7)) hue-rotate(60deg);
    }
    75% {
        transform: scale(1.1) rotate(270deg);
        filter: drop-shadow(0 15px 35px rgba(212, 165, 116, 0.5)) hue-rotate(30deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
        filter: drop-shadow(0 10px 30px rgba(212, 165, 116, 0.3));
    }
}

/* Circular Navigation Menu */
.nav-circle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1001;
    pointer-events: all;
}

.nav-toggle-btn {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: none;
    outline: none;
}

.nav-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-circle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-circle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.nav-circle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-items-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.nav-circle.active .nav-items-circle {
    opacity: 1;
    pointer-events: all;
}

.nav-circle-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    transform: scale(0);
}

.nav-circle.active .nav-circle-item {
    transform: scale(1);
}

.nav-circle-item:nth-child(1) {
    top: -80px;
    left: -25px;
    transition-delay: 0.1s;
}

.nav-circle-item:nth-child(2) {
    top: -80px;
    right: -25px;
    transition-delay: 0.2s;
}

.nav-circle-item:nth-child(3) {
    bottom: -80px;
    left: -25px;
    transition-delay: 0.3s;
}

.nav-circle-item:nth-child(4) {
    bottom: -80px;
    right: -25px;
    transition-delay: 0.4s;
}

.nav-circle-item:hover,
.nav-circle-item.active {
    background: var(--gradient-primary);
    color: var(--text-light);
    transform: scale(1.2);
}

/* Tooltip */
.nav-circle-item::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.nav-circle-item:hover::before {
    opacity: 1;
    bottom: -40px;
}

/* Side Navigation Panel */
.side-nav {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--secondary-color);
    color: var(--text-light);
    z-index: 1002;
    transition: var(--transition);
    pointer-events: all;
    overflow-y: auto;
}

.side-nav.active {
    right: 0;
}

.side-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-logo {
    height: 60px;
    width: auto;
}

.close-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.side-nav-content {
    padding: 2rem;
}

.nav-section {
    margin-bottom: 3rem;
}

.nav-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.side-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.side-nav-link:hover,
.side-nav-link.active {
    color: var(--primary-color);
    padding-left: 1rem;
}

.side-nav-link i {
    font-size: 1.2rem;
    width: 25px;
}

.link-arrow {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.side-nav-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.social-nav {
    display: flex;
    gap: 1rem;
}

.social-nav-item {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-nav-item:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.side-nav-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.side-nav-footer p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.contact-quick a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 15, 15, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.title-line {
    display: block;
    line-height: 0.9;
}

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.4s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.7s forwards;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-header {
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Instagram Video Section */
.instagram-video {
    padding: 6rem 0;
    background: var(--bg-light);
}

.instagram-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1200px;
}

.instagram-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.instagram-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--secondary-color);
    color: var(--text-light);
}

.gallery .section-title {
    color: var(--text-light);
}

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--primary-color);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--accent-color);
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.hours p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Particles Animation */
.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .nav-left, .nav-right {
        gap: 1rem;
    }
    
    .nav-item span {
        display: none;
    }
    
    .main-logo {
        height: 60px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Bigger logo on tablets and small devices */
    .floating-logo {
        top: 1.5rem;
        transform: translateX(-50%) scale(0.9) perspective(800px) rotateY(0);
    }

    .logo-wrapper {
        width: 130px;
        height: 130px;
    }

    .navbar-logo {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* Page-specific Styles */

/* Page Header */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    z-index: 1;
}

.page-header .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-header .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-header .hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 15, 15, 0.4) 100%);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.page-header p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.breadcrumb {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb i {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Active nav item */
.nav-item.active {
    background: var(--gradient-primary);
    color: var(--text-light);
}

/* Story Section */
.story-section {
    padding: 6rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-kicker {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.story-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.story-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.story-image:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--text-light);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--secondary-color);
    color: var(--text-light);
}

.team-section .section-title {
    color: var(--text-light);
}

.team-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.team-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-image:hover .team-overlay {
    opacity: 1;
}

.team-overlay .social-links {
    display: flex;
    gap: 1rem;
}

.team-overlay .social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-date {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    min-width: 100px;
    text-align: center;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    margin: 0 2rem;
    flex: 1;
}

.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Reservation Form Styles */
.reservation-form-section,
.contact-form-section {
    padding: 6rem 0;
}

.reservation-grid,
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.reservation-features,
.contact-features {
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-options {
    margin-top: 3rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.reservation-form-container,
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: none;
}

.btn-full {
    width: 100%;
}

/* Contact Info Styles */
.contact-info-section {
    padding: 6rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--text-light);
}

.contact-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary-color);
}

/* Table Types */
.table-types-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.table-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.table-type-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.table-type-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.table-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.table-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.table-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.table-capacity {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
}

.table-info {
    padding: 2rem;
}

.table-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.table-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.table-features {
    list-style: none;
}

.table-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.table-features i {
    color: var(--primary-color);
}

/* Reservation Info */
.reservation-info-section {
    padding: 6rem 0;
    background: var(--secondary-color);
    color: var(--text-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-light);
}

.info-card h3 {
    margin-bottom: 1rem;
}

.info-content p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Map Section */
.map-section {
    padding: 6rem 0;
}

.map-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.map-info {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
}

.map-info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
    max-width: 300px;
}

.transport-options {
    margin-top: 1rem;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.transport-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
}

.transport-item h4 {
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.transport-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    color: var(--secondary-color);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Social Contact */
.social-contact {
    margin-top: 3rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.social-link i {
    font-size: 1.5rem;
    width: 30px;
}

/* Mobile Responsive for New Navbar */
@media (max-width: 768px) {
    .floating-logo {
        top: 1rem;
    }
    
    .logo-wrapper {
        width: 90px;
        height: 90px;
    }
    
    .navbar-logo {
        width: 110px;
        height: 70px;
    }
    
    .nav-circle {
        top: 1rem;
        right: 1rem;
    }
    
    .nav-toggle-btn {
        width: 60px;
        height: 60px;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
    }
    
    .nav-circle-item {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .nav-circle-item:nth-child(1) {
        top: -70px;
        left: -22px;
    }
    
    .nav-circle-item:nth-child(2) {
        top: -70px;
        right: -22px;
    }
    
    .nav-circle-item:nth-child(3) {
        bottom: -70px;
        left: -22px;
    }
    
    .nav-circle-item:nth-child(4) {
        bottom: -70px;
        right: -22px;
    }
    
    .side-nav {
        width: 100%;
        right: -100%;
    }
    
    .side-nav-header {
        padding: 1.5rem;
    }
    
    .side-nav-content {
        padding: 1.5rem;
    }
    
    .side-nav-footer {
        padding: 1.5rem;
    }
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .story-grid,
    .reservation-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        justify-content: center;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 4rem;
    }
    
    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }
    
    .timeline-date {
        position: absolute;
        left: 0;
        top: 0;
        min-width: auto;
        padding: 0.5rem 1rem;
    }
    
    .timeline-content {
        margin: 0;
        margin-top: 3rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .map-info {
        position: static;
        margin-top: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* AOS Animation Overrides */
[data-aos="fade-up"] {
    transform: translate3d(0, 40px, 0);
    opacity: 0;
}

[data-aos="fade-up"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translate3d(-40px, 0, 0);
    opacity: 0;
}

[data-aos="fade-right"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

[data-aos="fade-left"] {
    transform: translate3d(40px, 0, 0);
    opacity: 0;
}

[data-aos="fade-left"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

/* Instagram Video Section */
.instagram-video {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
}

.instagram-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(244, 228, 188, 0.05) 100%);
    pointer-events: none;
}

.instagram-videos-grid {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-wrapper {
    flex: 0 0 auto;
    width: 280px;
    max-width: 280px;
}

.instagram-wrapper:last-child {
    margin-right: 0;
}

.instagram-wrapper .instagram-media {
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow-soft) !important;
    transition: var(--transition);
    background: #fff !important;
    width: 280px !important;
    margin: 0 !important;
}

.instagram-wrapper:hover .instagram-media {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong) !important;
}

/* Mobile responsive for Instagram section */
@media (max-width: 768px) {
    .instagram-video {
        padding: 3rem 0;
    }
    
    .instagram-videos-grid {
        margin-top: 2rem;
        padding: 0 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .instagram-wrapper {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .instagram-wrapper:last-child {
        margin-bottom: 0;
    }
    
    .instagram-wrapper .instagram-media {
        max-width: 100% !important;
        min-width: 280px !important;
    }
}
