/* Color Palette */
:root {
    --primary-white: #ffffff;
    --primary-light: #f8f9fa;
    --accent-gray: #6c757d;
    --accent-dark: #495057;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-section: #f5f5f5;
    --bg-hover: #e9ecef;
    --text-dark: #212529;
    --text-gray: #6c757d;
    --text-muted: #868e96;
    --text-light: #ffffff;
    --border-gray: #dee2e6;
    --border-hover: #adb5bd;
    --success-green: #10b981;
    --gradient-primary: linear-gradient(135deg, var(--primary-white), var(--primary-light));
    --gradient-accent: linear-gradient(135deg, var(--accent-gray), var(--accent-dark));
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    max-width: 100vw;
    min-height: 100vh;
    position: relative;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gray);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-gray);
}

.btn-secondary:hover {
    background: var(--bg-section);
    border-color: var(--accent-gray);
    color: var(--accent-gray);
    transform: translateY(-1px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid var(--border-gray);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
}

.nav-logo h2 {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gray);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gray);
    transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--accent-gray);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    padding: 120px 20px 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 249, 250, 0.9));
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons .btn {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    text-transform: none;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}

.hero-buttons .btn-primary {
    background: var(--accent-gray);
    box-shadow: var(--shadow-medium);
}

.hero-buttons .btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-gray);
    color: var(--text-dark);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: var(--bg-white);
    color: var(--accent-gray);
    border-color: var(--accent-gray);
    transform: translateY(-2px);
}

.hero-image {
    display: none;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--bg-section);
    overflow: hidden;
}

.about-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.2s ease;
    border: 1px solid var(--border-gray);
}

.feature:hover {
    transform: translateY(-4px);
    background: var(--bg-hover);
    border-color: var(--border-hover);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 3rem;
    color: var(--accent-gray);
    margin-bottom: 1rem;
}

.feature h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.2s ease;
    border: 1px solid var(--border-gray);
}

.service-card:hover {
    transform: translateY(-6px);
    background: var(--bg-hover);
    border-color: var(--border-hover);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--accent-gray);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Location Section */
.location {
    padding: 100px 0;
    background: var(--bg-section);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-info h3 {
    color: #333;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.info-item a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

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

.location-map iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0 0 0;
    background: var(--bg-white);
}

/* Modern Portfolio Grid - Full Width Masonry */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 300px;
    gap: 0;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    padding: 0 5rem;
    grid-auto-flow: dense; /* Puzzle-like yerleştirme için */
    box-sizing: border-box;
    overflow: hidden;
    align-items: start;
}

/* Fotoğraf 28 için özel yerleştirme - boş alanları doldurur */
.portfolio-item.photo-28 {
    order: 999;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-light);
    border-radius: 12px;
    grid-row-end: span var(--row-span, 1);
    min-height: 300px;
    max-width: 100%;
    box-sizing: border-box;
}

.portfolio-item img,
.portfolio-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.portfolio-item:hover img,
.portfolio-item:hover video {
    transform: scale(1.05);
}

/* Puzzle-like sizing - farklı boyutlar için dinamik grid */
.portfolio-item.large {
    grid-column: span 1;
    grid-row-end: span 2;
    min-height: 600px;
}

@media (min-width: 1400px) {
    .portfolio-item.large {
        grid-column: span 2;
    }
}

.portfolio-item.wide {
    grid-column: span 1;
    grid-row-end: span 1;
    min-height: 300px;
}

@media (min-width: 1200px) {
    .portfolio-item.wide {
        grid-column: span 2;
    }
}

.portfolio-item.tall {
    grid-column: span 1;
    grid-row-end: span 2;
    min-height: 600px;
}

.portfolio-item.medium {
    grid-column: span 1;
    grid-row-end: span 1;
    min-height: 300px;
}

/* Video autoplay on scroll */
.portfolio-item.portfolio-video video {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.portfolio-item.portfolio-video video.playing {
    opacity: 1;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.portfolio-overlay-content {
    text-align: center;
    color: white;
    width: 100%;
}

.portfolio-overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.portfolio-overlay-content h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.portfolio-overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.portfolio-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.portfolio-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.portfolio-badge i {
    color: var(--accent-gray);
}

.portfolio-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-modal-content video {
    width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close:hover {
    color: var(--accent-gray);
}

.video-modal-info {
    margin-top: 1.5rem;
    text-align: center;
    color: white;
    max-width: 800px;
}

.video-modal-info h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.video-modal-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Video Gallery Section (Legacy - kept for compatibility) */
.videos {
    padding: 100px 0;
    background: var(--bg-section);
}

.video-carousel {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 2rem;
}

.video-container {
    position: relative;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.video-container:hover {
    background: var(--bg-hover);
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.video-placeholder {
    width: 100%;
    height: 500px;
    background: var(--bg-section);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent-gray);
}

.video-placeholder p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 0;
}

.video-container video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    background: #000;
}

.video-info {
    padding: 1.5rem 0 0.5rem 0;
    text-align: center;
}

.video-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.video-info p {
    color: var(--text-gray);
    margin: 0;
    font-size: 1rem;
}

.video-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.video-thumb {
    position: relative;
    width: 200px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #333, #555);
    border: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.video-thumb.active {
    border-color: var(--accent-gray);
    box-shadow: 0 0 20px rgba(108, 117, 125, 0.3);
}

.video-thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.video-thumb.placeholder {
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    color: var(--text-muted);
    cursor: default;
}

.video-thumb.placeholder:hover {
    transform: none;
    box-shadow: none;
}

.thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.video-thumb:hover .thumb-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.thumb-overlay i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-thumb span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 3;
}

.video-thumb.placeholder span {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}

/* Photo Gallery */
.photo-gallery-section {
    margin-top: 4rem;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.portfolio-photo {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-gray);
    background: var(--bg-white);
    box-shadow: var(--shadow-light);
}

.portfolio-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--border-hover);
}

.portfolio-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-photo:hover img {
    transform: scale(1.05);
}

.photo-number {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-gray);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-photo:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    font-size: 2.5rem;
    color: white;
}

/* Photo Lightbox */
.photo-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: var(--accent-gray);
}

.lightbox-number {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Events Section */
.events {
    padding: 120px 0;
    background: var(--bg-light);
}

.events-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.instagram-feed h3,
.upcoming-events h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    position: relative;
}

.upcoming-events h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gray);
    border-radius: 1px;
}

/* Instagram Widget Container */
.instagram-widget-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.widget-setup-guide {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px dashed #ff6b35;
}

.widget-setup-guide i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.widget-setup-guide h4 {
    color: #333;
    margin-bottom: 1rem;
}

.widget-setup-guide ol {
    text-align: left;
    max-width: 400px;
    margin: 1.5rem auto;
    color: #666;
}

.widget-setup-guide li {
    margin-bottom: 0.5rem;
}

.widget-setup-guide a:not(.btn) {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.widget-setup-guide a:not(.btn):hover {
    text-decoration: underline;
}

/* Instagram Posts */
.instagram-posts {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 2rem;
    flex-wrap: wrap;
    max-width: 100%;
    overflow: hidden;
}

.instagram-post {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 200px;
    height: 200px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    border: 1px solid #e0e0e0;
}

.instagram-post:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post:hover img {
    transform: scale(1.05);
}

.instagram-post.placeholder {
    background: linear-gradient(135deg, var(--accent-gray), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.placeholder-content {
    text-align: center;
    color: white;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.placeholder-content i {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.placeholder-content p {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    line-height: 1.3;
}

.placeholder-content .btn {
    background: white;
    color: var(--accent-gray);
    border: none;
    padding: 8px 16px;
    font-size: 0.8rem;
    border-radius: 6px;
}

.placeholder-content .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
    padding: 0.8rem;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-overlay i {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.post-overlay p {
    color: white;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Upcoming Events */
.event-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 1px solid var(--border-gray);
    cursor: pointer;
}

.event-item:hover {
    transform: translateX(6px);
    background: var(--bg-hover);
    border-color: var(--border-hover);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.event-item:hover .event-info h4 {
    color: var(--text-dark);
}

.event-item:hover .event-info p {
    color: var(--text-gray);
}

.event-item:hover .event-time {
    color: var(--accent-dark);
}

.event-date {
    background: var(--accent-gray);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 70px;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.4s ease;
}

.event-info p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 400;
    transition: color 0.4s ease;
}

.event-time {
    color: var(--accent-gray);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.4s ease;
}

/* Loading Animations */
.loading-posts,
.loading-events {
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
}

.loading-posts i,
.loading-events i {
    font-size: 2rem;
    color: var(--accent-gray);
    margin-bottom: 1rem;
}

.loading-posts p,
.loading-events p {
    margin: 0;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-section);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method:hover {
    background: var(--bg-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-method i {
    color: var(--accent-gray);
    font-size: 1.5rem;
}

.contact-method h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-method a {
    color: var(--accent-gray);
    text-decoration: none;
    font-weight: 600;
}

.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.contact-form:hover {
    background: var(--bg-hover);
    border-color: var(--border-hover);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: var(--bg-light);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gray);
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.1);
}

/* Footer */
.footer {
    background: var(--bg-section);
    color: var(--text-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-gray);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-gray);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-gray);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
    color: var(--text-gray);
}

.powered-by {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.powered-by a {
    color: var(--accent-gray);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.powered-by a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .events-content {
        width: 100%;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-auto-rows: 250px;
        padding: 0 3.75rem;
        max-width: 100%;
    }
    
    .portfolio-item.large {
        grid-column: span 1;
        grid-row-end: span 2;
        min-height: 500px;
    }
    
    .portfolio-item.wide {
        grid-column: span 1;
        grid-row-end: span 1;
        min-height: 250px;
    }
    
    .portfolio-item.tall {
        grid-column: span 1;
        grid-row-end: span 2;
        min-height: 500px;
    }
    
    .portfolio-item.medium {
        grid-column: span 1;
        grid-row-end: span 1;
        min-height: 250px;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .instagram-posts {
        gap: 20px;
    }
    
    .instagram-post {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        padding: 0 2.5rem;
    }
    
    .portfolio-item.large,
    .portfolio-item.wide {
        grid-column: span 1;
    }
    
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        border-top: 1px solid var(--border-gray);
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        background-attachment: scroll;
        padding: 100px 20px 60px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 30px;
        font-size: 1rem;
        min-width: 200px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .video-carousel {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .video-container video {
        height: 300px;
    }
    
    .video-thumbnails {
        gap: 1rem;
    }
    
    .video-thumb {
        width: 150px;
        height: 90px;
    }
    
    .instagram-posts {
        gap: 15px;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .instagram-post {
        width: 160px;
        height: 160px;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .event-item:hover {
        transform: translateY(-3px);
        background: var(--bg-hover);
        border-color: var(--border-hover);
    }
    
    .event-date {
        min-width: 80px;
    }
    
    .placeholder-content {
        padding: 1rem;
    }
    
    .placeholder-content i {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }
    
    .placeholder-content p {
        font-size: 0.8rem;
        line-height: 1.25;
        margin-bottom: 0.7rem;
    }
    
    .placeholder-content .btn {
        padding: 7px 14px;
        font-size: 0.75rem;
        border-radius: 5px;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        min-width: 180px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        grid-auto-rows: 150px;
        padding: 0 2.5rem;
    }
    
    .portfolio-item {
        min-height: 150px;
    }
    
    .portfolio-item.large {
        grid-column: span 2;
        grid-row-end: span 2;
        min-height: 300px;
    }
    
    .portfolio-item.wide {
        grid-column: span 2;
        grid-row-end: span 1;
        min-height: 150px;
    }
    
    .portfolio-item.tall {
        grid-column: span 1;
        grid-row-end: span 2;
        min-height: 300px;
    }
    
    .portfolio-item.medium {
        grid-column: span 1;
        grid-row-end: span 1;
        min-height: 150px;
    }
    
    .portfolio-overlay {
        padding: 1rem;
    }
    
    .portfolio-overlay-content i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .portfolio-overlay-content h4 {
        font-size: 0.9rem;
    }
    
    .portfolio-overlay-content p {
        font-size: 0.8rem;
    }
    
    .portfolio-number {
        font-size: 1.5rem;
    }
    
    .portfolio-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .video-carousel {
        padding: 0 15px;
    }
    
    .video-container video {
        height: 250px;
    }
    
    .video-thumbnails {
        gap: 0.8rem;
    }
    
    .video-thumb {
        width: 120px;
        height: 75px;
    }
    
    .video-thumb span {
        font-size: 0.8rem;
        padding: 0.3rem;
    }
    
    .instagram-posts {
        gap: 12px;
        justify-content: center;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .instagram-post {
        width: 150px;
        height: 150px;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .photo-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        top: 8px;
        left: 8px;
    }
    
    .event-item {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .event-date {
        min-width: 70px;
        padding: 0.75rem;
    }
    
    .event-date .day {
        font-size: 1.3rem;
    }
    
    .event-info h4 {
        font-size: 1.1rem;
    }
    
    .placeholder-content {
        padding: 0.8rem;
    }
    
    .placeholder-content i {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .placeholder-content p {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }
    
    .placeholder-content .btn {
        padding: 6px 10px;
        font-size: 0.65rem;
        border-radius: 4px;
        white-space: nowrap;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
} 
