* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 20px;
    z-index: 1000;
    margin: 0 3%;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.logo:hover {
    transform: rotate(-10deg) scale(1.05);
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nav-menu {
    position: absolute;
    top: 100%;
    right: 20px;
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 15px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: top right;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-link {
    text-decoration: none;
    color: #111111;
    font-weight: 600;
    padding: 12px 30px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: block;
    outline: none;
}

.nav-link:hover {
    background: rgba(0, 0, 0, 0.04);
    padding-left: 36px;
    color: #000000;
}

.menu-btn {
    cursor: pointer;
    width: 32px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
    outline: none;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-btn.active .bar:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.menu-btn.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-btn.active .bar:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.main-content {
    padding: 0 5%;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    text-align: center;
    padding: 160px 0 120px;
}

.main-title {
    font-size: 70px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #000000, #555555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: float 5s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.sub-title {
    font-size: 1.35rem;
    font-weight: 400;
    color: #555555;
    margin-bottom: 60px;
}

.action-btn {
    display: inline-block;
    padding: 18px 52px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
}

.action-btn:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
    background: #000000;
}

.gallery {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 70px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 45px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 35px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card:hover img {
    transform: scale(1.04);
}

.desc {
    margin-top: 24px;
    font-size: 0.95rem;
    color: #777777;
    font-weight: 500;
}

.contact {
    text-align: center;
    padding: 80px 0 120px;
}

.contact-card {
    display: inline-block;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 50px 90px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease;
}

.contact-card:hover {
    transform: scale(1.02);
}

.contact p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 18px 0;
    color: #111111;
}

.footer {
    text-align: center;
    padding: 40px;
    background: #000000;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    margin-top: 50px;
}

.easter-egg-pig {
    position: fixed;
    width: 80px;
    height: 80px;
    z-index: 9999;
    pointer-events: none;
    object-fit: contain;
    transition: left 0.8s linear, top 0.8s linear, transform 0.3s ease;
}