* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: #000000;
    font-family: 'Sacramento', cursive;
    font-weight: 400;
    font-size: 2.5rem;
    transform: rotate(-2deg);
    letter-spacing: 1px;
    text-shadow: none;
    font-style: italic;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #e74c3c;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e74c3c;
    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-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000000;
    color: white;
    padding-top: 0;
}

.hero-container {
    max-width: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    height: 100vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    padding: 0 2rem 0 4rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.hero-photo {
    width: 100%;
    height: 100vh;
    border-radius: 0;
    object-fit: cover;
    object-position: center 20%;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease;
    margin-top: 0;
}

.hero-photo:hover {
    transform: none;
}

.hero-placeholder {
    background: rgba(255, 255, 255, 0.15);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-placeholder small {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
    display: block;
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.image-placeholder p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8f9fa;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.about-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #7f8c8d;
    font-weight: 500;
}

/* Portfolio Brand Info */
.brand-info {
    text-align: center;
    margin-bottom: 3rem;
}

.brand-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.brand-info p {
    font-size: 1rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Portfolio Intro */
.portfolio-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.portfolio-intro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.portfolio-intro p {
    font-size: 1rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-image {
    display: flex;
    justify-content: center;
}

/* Abstract Animation Styles */
.abstract-animation {
    
    width: 350px;
    height: 350px;
    position: relative;
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
}

.dots-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0.8;
}

.dot-1 { top: 20%; left: 15%; animation: floatDot1 4s ease-in-out infinite; }
.dot-2 { top: 30%; left: 80%; animation: floatDot2 5s ease-in-out infinite; }
.dot-3 { top: 60%; left: 20%; animation: floatDot3 6s ease-in-out infinite; }
.dot-4 { top: 70%; left: 70%; animation: floatDot4 4.5s ease-in-out infinite; }
.dot-5 { top: 40%; left: 50%; animation: floatDot5 5.5s ease-in-out infinite; }
.dot-6 { top: 15%; left: 60%; animation: floatDot6 6.5s ease-in-out infinite; }
.dot-7 { top: 80%; left: 30%; animation: floatDot7 4.8s ease-in-out infinite; }
.dot-8 { top: 50%; left: 85%; animation: floatDot8 5.2s ease-in-out infinite; }
.dot-9 { top: 25%; left: 40%; animation: floatDot9 6.2s ease-in-out infinite; }

.lines-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    opacity: 0.6;
    transform-origin: left center;
}

.line-1 { 
    top: 25%; 
    left: 10%; 
    width: 60%; 
    transform: rotate(15deg);
    animation: pulseLine1 3s ease-in-out infinite;
}
.line-2 { 
    top: 45%; 
    left: 20%; 
    width: 50%; 
    transform: rotate(-20deg);
    animation: pulseLine2 4s ease-in-out infinite;
}
.line-3 { 
    top: 65%; 
    left: 15%; 
    width: 70%; 
    transform: rotate(10deg);
    animation: pulseLine3 3.5s ease-in-out infinite;
}
.line-4 { 
    top: 35%; 
    left: 30%; 
    width: 40%; 
    transform: rotate(-15deg);
    animation: pulseLine4 4.5s ease-in-out infinite;
}
.line-5 { 
    top: 55%; 
    left: 5%; 
    width: 80%; 
    transform: rotate(25deg);
    animation: pulseLine5 3.8s ease-in-out infinite;
}

/* Dot Animations */
@keyframes floatDot1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    25% { transform: translate(20px, -15px) scale(1.2); opacity: 1; }
    50% { transform: translate(-10px, 10px) scale(0.8); opacity: 0.6; }
    75% { transform: translate(15px, 5px) scale(1.1); opacity: 0.9; }
}

@keyframes floatDot2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    30% { transform: translate(-25px, 20px) scale(1.3); opacity: 1; }
    60% { transform: translate(15px, -10px) scale(0.7); opacity: 0.5; }
    90% { transform: translate(-5px, -15px) scale(1.1); opacity: 0.9; }
}

@keyframes floatDot3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    20% { transform: translate(30px, -20px) scale(1.4); opacity: 1; }
    40% { transform: translate(-20px, 15px) scale(0.6); opacity: 0.4; }
    70% { transform: translate(10px, 25px) scale(1.2); opacity: 0.9; }
}

@keyframes floatDot4 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    35% { transform: translate(-15px, -25px) scale(1.1); opacity: 1; }
    65% { transform: translate(25px, 10px) scale(0.9); opacity: 0.7; }
}

@keyframes floatDot5 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    25% { transform: translate(-30px, 20px) scale(1.3); opacity: 1; }
    50% { transform: translate(20px, -15px) scale(0.7); opacity: 0.5; }
    75% { transform: translate(-10px, -20px) scale(1.1); opacity: 0.9; }
}

@keyframes floatDot6 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    40% { transform: translate(20px, 30px) scale(1.2); opacity: 1; }
    80% { transform: translate(-25px, -10px) scale(0.8); opacity: 0.6; }
}

@keyframes floatDot7 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    30% { transform: translate(-20px, -30px) scale(1.4); opacity: 1; }
    60% { transform: translate(15px, 20px) scale(0.6); opacity: 0.4; }
}

@keyframes floatDot8 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    20% { transform: translate(25px, -15px) scale(1.1); opacity: 1; }
    50% { transform: translate(-20px, 25px) scale(0.9); opacity: 0.7; }
    80% { transform: translate(10px, -20px) scale(1.2); opacity: 0.9; }
}

@keyframes floatDot9 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    35% { transform: translate(-25px, 15px) scale(1.3); opacity: 1; }
    70% { transform: translate(20px, -25px) scale(0.7); opacity: 0.5; }
}

/* Line Animations */
@keyframes pulseLine1 {
    0%, 100% { opacity: 0.3; transform: rotate(15deg) scaleX(1); }
    50% { opacity: 0.8; transform: rotate(15deg) scaleX(1.2); }
}

@keyframes pulseLine2 {
    0%, 100% { opacity: 0.2; transform: rotate(-20deg) scaleX(1); }
    50% { opacity: 0.7; transform: rotate(-20deg) scaleX(1.3); }
}

@keyframes pulseLine3 {
    0%, 100% { opacity: 0.4; transform: rotate(10deg) scaleX(1); }
    50% { opacity: 0.9; transform: rotate(10deg) scaleX(1.1); }
}

@keyframes pulseLine4 {
    0%, 100% { opacity: 0.3; transform: rotate(-15deg) scaleX(1); }
    50% { opacity: 0.8; transform: rotate(-15deg) scaleX(1.4); }
}

@keyframes pulseLine5 {
    0%, 100% { opacity: 0.2; transform: rotate(25deg) scaleX(1); }
    50% { opacity: 0.7; transform: rotate(25deg) scaleX(1.2); }
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e74c3c;
    background: transparent;
    color: #e74c3c;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #e74c3c;
    color: white;
}

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

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.portfolio-link:hover {
    text-decoration: none;
    color: inherit;
}

.portfolio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.portfolio-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 0;
    border: none;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Brands Carousel Section */
.brands {
    padding: 4rem 0;
    background: #f8f9fa;
    overflow: hidden;
}

.brands-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.brands-header {
    text-align: center;
    margin-bottom: 3rem;
}

.brands-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.brands-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* 3D Brands Carousel */
.brands-carousel-3d {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;
    margin: 4rem auto;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    justify-content: center;
}

.brands-ring {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.brand-item-3d {
    position: relative;
    flex-shrink: 0;
    width: auto;
    height: 100px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item-3d:hover {
    transform: scale(1.1);
    z-index: 10;
}

.brand-item-3d:hover .brand-name-3d {
    opacity: 1;
}

.brand-logo-3d {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-logo-3d img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    width: 100%;
    height: auto;
}

.brand-name-3d {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-item-3d:hover .brand-name-3d {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brands-carousel-3d {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .brand-item-3d {
        height: 80px;
        width: auto;
    }
    
    .brand-logo-3d img {
        max-width: 100px;
        max-height: 50px;
    }
}


/* Contact Section */
.contact {
    padding: 6rem 0;
}

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

.contact-info h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #7f8c8d;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-logo h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 80px;
        background: #000000;
        position: relative;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('images/viktoria-hero.jpg');
        background-size: cover;
        background-position: center 20%;
        background-repeat: no-repeat;
        filter: blur(3px);
        z-index: 1;
    }
    
    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(102, 126, 234, 0.7);
        z-index: 2;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        height: auto;
        padding: 0 20px;
        position: relative;
        z-index: 3;
    }
    
    .hero-content {
        height: auto;
        padding: 2rem 0;
        order: 1;
        position: relative;
        z-index: 3;
    }
    
    .section-header {
        text-align: center;
    }
    
    .section-header h2 {
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-image {
        display: none;
    }
    
    .service-card {
        text-align: center;
    }
    
    .service-card h3 {
        text-align: center;
    }
    
    .contact-form {
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info h3 {
        text-align: center;
    }
    
    .contact-info p {
        text-align: center;
    }
    
    .contact-content {
        display: flex;
        flex-direction: column;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-info {
        order: 2;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer p {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .image-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .hero-photo {
        width: 100%;
        height: 100vh;
        margin-top: 0;
    }
    
    .abstract-animation {
        width: 250px;
        height: 250px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .line {
        height: 1.5px;
    }
}

@media (max-width: 480px) {
    .nav-logo h2 {
        font-size: 1.7rem;
        letter-spacing: 0.5px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .portfolio-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .brand-info h3,
    .portfolio-intro h3 {
        font-size: 1.3rem;
    }
    
    .brand-info p,
    .portfolio-intro p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .hero {
        min-height: 100vh;
        padding-top: 80px;
        background: #000000;
        position: relative;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('images/viktoria-hero.jpg');
        background-size: cover;
        background-position: center 20%;
        background-repeat: no-repeat;
        filter: blur(3px);
        z-index: 1;
    }
    
    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(102, 126, 234, 0.7);
        z-index: 2;
    }
    
    .hero-container {
        height: auto;
        position: relative;
        z-index: 3;
    }
    
    .hero-content {
        height: auto;
        position: relative;
        z-index: 3;
    }
    
    .hero-image {
        height: 0;
        display: none;
    }
    
    .hero-photo {
        width: 100%;
        height: 100vh;
        margin-top: 0;
    }
    
    .abstract-animation {
        width: 200px;
        height: 200px;
    }
    
    .dot {
        width: 5px;
        height: 5px;
    }
    
    .line {
        height: 1px;
    }
    
    .brands-container {
        padding: 0 20px;
    }
    
    .brand-item {
        width: 150px;
        height: 100px;
    }
    
    .brand-logo {
        width: 60px;
        height: 45px;
    }
    
    .brand-name {
        font-size: 0.8rem;
    }
    
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
}
