/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --secondary-color: #2c3e50;
    --accent-color: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    overflow: hidden;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 250px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-shrink: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.brand-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 4rem;
    line-height: 1;
}

.kar {
    color: #2c3e50;
    font-weight: 800;
}

.tanesi {
    color: var(--primary-color);
    font-weight: 800;
    position: relative;
}

.tanesi::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.4s both;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 1s ease-out 0.8s both;
}

.snowflake-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.snowflake {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.snowflake:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.snowflake:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.snowflake:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-motto {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
    font-style: italic;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: var(--text-dark);
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 350px;
    height: 350px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-placeholder {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--light-gray);
}

.gallery-content {
    margin-top: 50px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-image,
.gallery-video {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.gallery-image img,
.gallery-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-video video {
    z-index: 1;
    position: relative;
}

.gallery-video video::-webkit-media-controls {
    z-index: 2;
}

.gallery-video video::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(41, 128, 185, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    pointer-events: auto;
}

.gallery-video .gallery-overlay {
    pointer-events: auto;
}

.gallery-video video {
    pointer-events: auto;
}

.gallery-info {
    color: var(--white);
}

.gallery-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-zoom,
.gallery-play {
    align-self: flex-end;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-zoom:hover,
.gallery-play:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

#lightbox-image {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 20px;
    text-align: center;
    color: var(--white);
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 5px;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--light-gray);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 2px dashed var(--border-color);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    opacity: 0.5;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-logo .logo-image {
    width: 280px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.footer-logo:hover .logo-image {
    transform: scale(1.05);
}

.footer-motto {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-style: italic;
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-developer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-developer p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.developer-link {
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: var(--primary-color);
}

.developer-logo-img {
    height: 85px;
    width: auto;
    vertical-align: middle;
    margin: 0 15px;
    transition: all 0.3s ease;
    filter: brightness(0.8);
}

.developer-link:hover .developer-logo-img {
    filter: brightness(1.2);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 8px 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 12px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
    }

    .nav-link:hover {
        background: rgba(52, 152, 219, 0.1);
        color: var(--primary-color);
    }

    .hero {
        padding: 90px 0 60px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.4rem;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .brand-name {
        font-size: 2.8rem;
        gap: 5px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .subtitle {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-width: 120px;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 0;
    }

    .snowflake-container {
        width: 200px;
        height: 200px;
    }

    .snowflake {
        width: 40px;
        height: 40px;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
        border-radius: 12px;
        text-align: center;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 15px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .section-header {
        margin-bottom: 40px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-text {
        order: 2;
    }

    .about-visual {
        order: 1;
    }

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .about-motto {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .feature {
        font-size: 0.9rem;
        text-align: left;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-item {
        margin-bottom: 20px;
        padding: 20px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        text-align: center;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin: 0 auto 15px;
    }

    .contact-details h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .contact-details p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .gallery {
        padding: 60px 0;
    }

    .gallery-filters {
        gap: 10px;
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-info h3 {
        font-size: 1.1rem;
    }

    .gallery-info p {
        font-size: 0.8rem;
    }

    .gallery-zoom,
    .gallery-play {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .contact-map {
        margin-top: 20px;
    }

    .footer {
        padding: 40px 0 20px;
        text-align: center;
    }

    .footer-developer {
        margin-top: 15px;
        padding-top: 15px;
    }

    .footer-developer p {
        font-size: 0.8rem;
    }

    .developer-logo-img {
        height: 65px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .nav-container {
        height: 60px;
        padding: 0 10px;
        overflow: hidden;
    }

    .nav-logo {
        font-size: 1.1rem;
        gap: 5px;
    }

    .logo-image {
        width: 160px;
        height: auto;
    }

    .hero {
        padding: 70px 0 40px;
        min-height: auto;
    }

    .hero-container {
        gap: 25px;
    }

    .hero-title {
        font-size: 1.8rem;
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .brand-name {
        font-size: 2.2rem;
        gap: 3px;
        flex-direction: column;
        gap: 1px;
    }
    
    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 180px;
        text-align: center;
    }

    .snowflake-container {
        width: 150px;
        height: 150px;
    }

    .snowflake {
        width: 30px;
        height: 30px;
    }

    .services {
        padding: 40px 0;
    }

    .services-grid {
        gap: 15px;
    }

    .service-card {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .about {
        padding: 40px 0;
    }

    .about-content {
        gap: 25px;
    }

    .about-text h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .about-motto {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 15px;
    }

    .feature {
        font-size: 0.85rem;
        text-align: center;
        margin-bottom: 8px;
    }

    .contact {
        padding: 40px 0;
    }

    .contact-content {
        gap: 25px;
    }

    .contact-item {
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 10px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .contact-details h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .contact-details p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .gallery {
        padding: 40px 0;
    }

    .gallery-filters {
        gap: 8px;
        margin-bottom: 25px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .gallery-grid {
        gap: 15px;
    }

    .gallery-info h3 {
        font-size: 1rem;
    }

    .gallery-info p {
        font-size: 0.75rem;
    }

    .gallery-zoom,
    .gallery-play {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-details a {
        font-size: 0.85rem;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-logo {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .footer-motto {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }

    .footer-developer {
        margin-top: 12px;
        padding-top: 12px;
    }

    .footer-developer p {
        font-size: 0.7rem;
    }

    .developer-logo-img {
        height: 55px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
} 