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

:root {
    --teal-900: #134e4a;
    --teal-800: #115e59;
    --teal-700: #0f766e;
    --teal-400: #2dd4bf;
    --teal-300: #5eead4;
    --teal-200: #99f6e4;
    --emerald-100: #d1fae5;
    --stone-50: #fafaf9;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-900: #1c1917;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--stone-50);
    color: var(--stone-900);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--teal-200);
    color: var(--teal-900);
}

/* Navigasjon */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    background: #ffffff;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.brand-name {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--teal-900);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--stone-500);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.subtitle-dot {
    color: #766067;
    font-size: 2em;
    vertical-align: -0.15em;
    line-height: 0;
}

.nav-links {
    background: #766067;
    backdrop-filter: blur(12px);
    border: 1px solid #766067;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    display: flex;
    gap: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 6rem;
}

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

.hero-left {
    position: relative;
}

.hero-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: rgba(209, 250, 229, 0.8);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(60px);
    opacity: 0.7;
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

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

.hero-text-box {
    position: relative;
    background: var(--emerald-100);
    padding: 2.5rem 4rem;
    border-radius: 3rem;
    border-top-left-radius: 5rem;
    border-bottom-right-radius: 5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
    color: var(--teal-900);
    margin-bottom: 1.5rem;
}

.hero-title-accent {
    color: var(--teal-800);
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--stone-600);
    line-height: 1.6;
    max-width: 28rem;
    margin-bottom: 2rem;
}

.hero-btn {
    background: var(--teal-900);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(19, 78, 74, 0.2);
    transition: transform 0.3s;
}

.hero-btn:hover {
    transform: scale(1.05);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 28rem;
    aspect-ratio: 1;
    background: var(--teal-900);
    border-radius: 3rem;
    padding: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(19, 78, 74, 0.2);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2.5rem;
}

.hero-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: white;
    color: var(--teal-900);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Prosjekter */
.projects {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.projects-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 3rem;
    padding: 0 0.5rem;
}

.projects-header p {
    color: var(--stone-500);
    font-size: 1.125rem;
    white-space: nowrap;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--teal-900);
    letter-spacing: -0.02em;
}

.projects-year {
    color: var(--stone-400);
    font-weight: 700;
}

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

.project-card {
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    display: block;
    color: inherit;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--stone-200);
    border-radius: 1.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0);
    transition: box-shadow 0.3s;
}

.project-image-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card:hover .project-image {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.project-shape-circle {
    width: 8rem;
    height: 8rem;
    background: rgba(214, 211, 209, 0.5);
    border-radius: 50%;
    transition: transform 0.5s;
}

.project-card:hover .project-shape-circle {
    transform: scale(1.25);
}

.project-shape-square {
    position: absolute;
    width: 5rem;
    height: 5rem;
    background: rgba(168, 162, 158, 0.3);
    border-radius: 0.5rem;
    transform: rotate(12deg);
    transition: transform 0.5s;
}

.project-card:hover .project-shape-square {
    transform: rotate(45deg);
}

.project-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--stone-500);
}

.project-info {
    padding: 0 0.5rem;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal-900);
    margin-bottom: 0.25rem;
    transition: color 0.3s;
}

.project-card:hover .project-title {
    color: var(--teal-700);
}

.project-subtitle {
    color: var(--stone-500);
    font-weight: 500;
}

/* Erfaring & Utdanning */
.experience {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

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

.experience-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.experience-header svg {
    color: var(--teal-800);
}

.experience-header h2 {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--teal-900);
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.experience-item {
    background: var(--teal-900);
    color: white;
    padding: 0.25rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s;
    box-shadow: 0 10px 15px -3px rgba(19, 78, 74, 0.1);
}

.experience-item:hover {
    transform: scale(1.02);
}

.exp-year {
    background: var(--teal-800);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    min-width: 140px;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--teal-300);
    letter-spacing: 0.02em;
}

.exp-details {
    flex: 1;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: right;
}

.exp-role {
    font-weight: 700;
    font-size: 1.125rem;
}

.exp-company {
    color: var(--teal-300);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.edu-school {
    color: #000000;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.exp-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--teal-400);
    border-radius: 50%;
    margin-right: 1.5rem;
}

.education-item {
    background: var(--stone-300);
    color: var(--stone-900);
    padding: 0.25rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s;
}

.education-item:hover {
    transform: scale(1.02);
}

.edu-year {
    background: white;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    min-width: 100px;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--stone-500);
}

.edu-details {
    flex: 1;
    padding: 0 1.5rem;
    text-align: right;
}

.edu-role {
    font-weight: 700;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: white;
    padding: 4rem 1.5rem;
    border-top: 1px solid var(--stone-200);
    margin-top: 5rem;
    text-align: center;
}

/* Ferdigheter karusell */
.skills {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.skills-header {
    margin-bottom: 3rem;
    padding: 0 0.5rem;
}

.skills-carousel-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.skills-carousel {
    overflow: hidden;
}

.skills-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.skills-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.skill-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--teal-900);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    white-space: nowrap;
    box-shadow: 0 10px 15px -3px rgba(19, 78, 74, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.skill-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(19, 78, 74, 0.25);
}

.skill-icon {
    font-size: 1.25rem;
}

.skill-name {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.footer-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--teal-900);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-icon {
    width: 4rem;
    height: 4rem;
    background: #766067;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    background: var(--teal-800);
    transform: translateY(-4px) rotate(3deg);
}

.footer-copyright {
    color: var(--stone-400);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-right {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem 1rem;
    }
    
    .nav-brand {
        text-align: center;
        align-items: center;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .brand-subtitle {
        font-size: 1.4rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.75rem;
    }
    
    .hero {
        padding: 2rem 1rem 4rem;
    }
    
    .hero-text-box {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .projects-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .projects-year {
        display: none;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-item {
        padding: 0.75rem 1.25rem;
    }
    
    .skill-name {
        font-size: 0.875rem;
    }
    
    .skill-icon {
        font-size: 1rem;
    }
    
    .exp-details,
    .edu-details {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.8rem;
    }
    
    .brand-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    /* Experience/Education mobile fix */
    .experience-item,
    .education-item {
        flex-direction: column;
        border-radius: 1.25rem;
        padding: 0;
        overflow: hidden;
    }
    
    .exp-year,
    .edu-year {
        width: 100%;
        min-width: unset;
        border-radius: 0;
        padding: 0.75rem 1rem;
        text-align: center;
    }
    
    .exp-details,
    .edu-details {
        width: 100%;
        padding: 1rem 1.25rem;
        text-align: center;
    }
    
    .exp-dot {
        display: none;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
}

html {
    scroll-behavior: smooth;
}

/* Project Card Carousel */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-img.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-btn svg {
    color: var(--teal-900);
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

.project-card:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: var(--teal-900);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:hover svg {
    color: white;
}

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.project-card:hover .carousel-dots {
    opacity: 1;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.active {
    background: white;
}

.carousel-dot:hover {
    transform: scale(1.2);
}


/* Prosjektdetalj-side */
.project-detail-header {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--stone-500);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--teal-800);
}


.project-detail-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--teal-900);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.project-detail-subtitle {
    font-size: 1.25rem;
    color: var(--stone-500);
    font-weight: 500;
}

.project-hero-image {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: center;
}

.project-hero-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.project-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.project-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: var(--stone-200);
    padding: 2rem;
    border-radius: 1.5rem;
    margin-bottom: 4rem;
}


.overview-item h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--stone-500);
    margin-bottom: 0.5rem;
}

.overview-item p {
    font-weight: 700;
    color: var(--teal-900);
}

.project-section {
    margin-bottom: 3rem;
}

.project-section h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--teal-900);
    margin-bottom: 1rem;
}

.project-section p {
    font-size: 1.125rem;
    color: var(--stone-600);
    line-height: 1.8;
}

.project-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

.project-gallery.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.project-gallery img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}


.project-full-image {
    margin: 3rem 0;
}

.project-full-image img,
.project-full-image video {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

/* Prosjekt krediteringer */
.project-credits {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--stone-300);
}

.project-credits h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--stone-500);
    margin-bottom: 1.5rem;
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.credit-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.credit-name {
    font-weight: 700;
    color: var(--teal-900);
    text-decoration: none;
    transition: color 0.3s;
}

.credit-name:hover {
    color: var(--teal-700);
}

.credit-role {
    font-size: 0.875rem;
    color: var(--stone-500);
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: var(--teal-900);
    padding: 3rem;
    border-radius: 1.5rem;
    margin: 3rem 0;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--teal-300);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--teal-200);
    font-weight: 500;
}

.project-navigation {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}


.nav-prev,
.nav-next {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.5rem;
    background: var(--stone-200);
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-prev:hover,
.nav-next:hover {
    background: var(--emerald-100);
    transform: translateY(-4px);
}

.nav-next {
    text-align: right;
}

.nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--stone-500);
}

.nav-title {
    font-weight: 700;
    color: var(--teal-900);
    font-size: 1rem;
}

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

/* Responsive for prosjektdetalj */
@media (max-width: 768px) {
    .project-detail-title {
        font-size: 2.5rem;
    }
    
    .project-overview {
        grid-template-columns: 1fr 1fr;
    }
    
    .project-gallery {
        grid-template-columns: 1fr;
    }
    
    .project-gallery.three-col {
        grid-template-columns: 1fr;
    }
    
    .project-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-navigation {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 0 1rem 4rem;
    }
    
    .nav-prev,
    .nav-next {
        padding: 1rem;
        border-radius: 0.75rem;
    }
    
    .nav-label {
        font-size: 0.65rem;
    }
    
    .nav-title {
        font-size: 0.85rem;
    }
}

/* Hamburger meny */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: #766067;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 540px) {
    .navbar {
        position: relative;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        gap: 1rem;
    }
    
    .nav-brand {
        text-align: center;
        align-items: center;
    }
    
    .hamburger {
        position: absolute;
        top: 1rem;
        right: 1rem;
        display: flex;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .brand-subtitle {
        font-size: 1rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        border-radius: 0 0 1rem 1rem;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 1rem 1.5rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
}
