/* ============================================
   FONTS
   ============================================ */

@font-face {
    font-family: 'LT Flode Neue';
    src: url('../fonts/LTFlodeNeue-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Averia Sans';
    src: url('../fonts/AveriaSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
    /* Animation Variables */
    --orbit-speed: 20s;
    --orbit-radius: 185px;
    --turtle-rotation: 90deg;
    --turtle-size: 80px;
    --inner-pulse-max: 1.1;
    --inner-pulse-min: 1.09;
    --outer-pulse-max: 1;
    --outer-pulse-min: 1.01;

    /* Color Palette */
    --color-deep-ocean: rgb(0, 42, 46);
    --color-rock-bottom: rgb(24, 83, 108);
    --color-cool-pond: rgb(29, 107, 140);
    --color-turtle-shell: rgb(41, 151, 198);
    --color-funky-flipper: rgb(123, 187, 59);
    --color-sandy-shore: rgb(203, 160, 41);
    --color-sea-foam: rgb(182, 222, 240);
    --color-hot-coral: rgb(213, 40, 197);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html, body {
    height: 100%;
}

body {
    font-family: 'Averia Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background-color: var(--color-deep-ocean);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

/* ============================================
   NAVIGATION - HAMBURGER MENU
   ============================================ */

.hamburger {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 8px;
    background: var(--color-sandy-shore);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--color-deep-ocean);
    border-radius: 2px;
    transition: 0.3s;
}

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

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

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

.menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100vh;
    background: var(--color-sandy-shore);
    backdrop-filter: blur(10px);
    transition: 0.3s;
    z-index: 999;
    padding-top: 80px;
}

.menu.active {
    left: 0;
}

.menu ul {
    list-style: none;
}

.menu ul li {
    padding: 20px 30px;
}

.menu ul li a {
    text-decoration: none;
    color: var(--color-deep-ocean);
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.menu ul li a:hover {
    color: var(--color-sea-foam);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1 {
    font-family: 'LT Flode Neue', sans-serif;
    color: var(--color-sea-foam);
    margin-bottom: 20px;
    font-size: 32px;
}

.subtitle {
    color: var(--color-funky-flipper);
    margin-bottom: 30px;
    font-size: 14px;
}

p {
    color: var(--color-sea-foam);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 16px;
}

/* ============================================
   BUTTONS & LINKS
   ============================================ */

.contact-link {
    display: inline-block;
    padding: 12px 30px;
    background: var(--color-sandy-shore);
    color: var(--color-deep-ocean);
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s;
    font-weight: 500;
}

.contact-link:hover {
    background: var(--color-hot-coral);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

button {
    width: 100%;
    padding: 14px;
    background: var(--color-sandy-shore);
    color: var(--color-deep-ocean);
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Averia Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
    background: var(--color-hot-coral);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

button:active {
    transform: translateY(0);
}

/* ============================================
   SOCIAL BAR
   ============================================ */

.social-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 50px;
    display: flex;
}

.social-bar a {
    color: var(--color-sea-foam);
    font-size: 24px;
    text-decoration: none;
    transition: 0.3s;
}

.social-bar a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.social-item img{
    filter: brightness(0) invert(1);
    height: 35px;
    display: block;
    width: auto;
}

.social-item-std {
    padding: 5px 5px 5px 9px;
}

.social-item-linked-in {
    padding: 5px 5px 5px 10px;
}

/* ============================================
   FORM STYLES
   ============================================ */

.contactFormContainer {
    background: var(--color-cool-pond);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    padding: 40px 40px 100px 40px;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-turtle-shell);
    font-weight: 500;
    font-size: 14px;
}

input, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.success-message {
    display: none;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.success-message.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .rotating-container {
        width: 300px;
        height: 300px;
        padding: 30px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }

    .social-bar {
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0;
        justify-content: center;
        padding: 20px;
    }
}