/* style.css */
@font-face {
    font-family: 'Google Sans Flex';
    src: url('font/GoogleSansFlex.ttf') format('truetype');
    font-weight: 100 1000;
    font-stretch: 25% 151%;
    font-display: swap;
}

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

:root {
    --primary-color: #6750A4;
    --primary-container: #EADDFF;
    --secondary-color: #625B71;
    --secondary-container: #E8DEF8;
    --tertiary-color: #7D5260;
    --tertiary-container: #FFD8E4;
    --surface: #FEF7FF;
    --surface-variant: #E7E0EC;
    --outline: #79747E;
    --outline-variant: #CAC4D0;
    
    --pastel-blue: #B3E5FC;
    --pastel-purple: #E1BEE7;
    --pastel-green: #C8E6C9;
    --pastel-pink: #F8BBD0;
    --pastel-orange: #FFE0B2;
    --wave-color: #74689c;
    --copy-bg: #66668a;
    
    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 20px;
    --radius-pill: 9999px;
}

body {
    font-family: 'Google Sans Flex', 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #FEF7FF;
    color: #1C1B1F;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* bg image bg image bg image HERE IS THE BG IMAGE */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('png/holder.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    opacity: 1;
}

/* shapes shapes shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.6;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    z-index: 1;
    width: auto;
    height: auto;
}

.shape-blue {
    filter: drop-shadow(0 4px 8px rgba(30, 136, 229, 0.25));
}

.shape-brown {
    filter: drop-shadow(0 4px 8px rgba(109, 76, 65, 0.25));
}

.shape-green {
    filter: drop-shadow(0 4px 8px rgba(67, 160, 71, 0.25));
}

.shape-valley {
    filter: drop-shadow(0 4px 8px rgba(84, 110, 122, 0.25));
}

.shape-1 {
    top: 5%;
    left: 5%;
    width: 220px;
    animation: float 25s infinite linear;
}

.shape-2 {
    top: 10%;
    right: 8%;
    width: 180px;
    animation: float 30s infinite linear reverse;
}

.shape-3 {
    top: 65%;
    left: 3%;
    width: 260px;
    animation: float 35s infinite linear;
}

.shape-4 {
    top: 15%;
    left: 45%;
    width: 200px;
    animation: float 28s infinite linear reverse;
}

.shape-5 {
    bottom: 10%;
    right: 10%;
    width: 240px;
    animation: float 32s infinite linear;
}

.shape-6 {
    bottom: 25%;
    right: 25%;
    width: 190px;
    animation: float 40s infinite linear reverse;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-40px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(0) rotate(180deg) scale(1);
    }
    75% {
        transform: translateY(40px) rotate(270deg) scale(0.9);
    }
    100% {
        transform: translateY(0) rotate(360deg) scale(1);
    }
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    position: relative;
    z-index: 2;
}

.m-section {
    padding: 80px 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.logo-container {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-image {
    width: 180px;
    height: 180px;
    margin-bottom: 4px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.pt-name {
    font-size: 76px;
    font-weight: 800;
    margin-top: -13px;
    margin-bottom: -16px;
    letter-spacing: -1.5px;
    color: #444169;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Google Sans Flex', 'Google Sans', sans-serif;
}

@keyframes color-change {
    0% {
        color: var(--pastel-blue);
    }

    20% {
        color: var(--pastel-purple);
    }

    40% {
        color: var(--pastel-green);
    }

    60% {
        color: var(--pastel-pink);
    }

    80% {
        color: var(--pastel-orange);
    }
    
    100% {
        color: var(--pastel-blue);
    }
}

.pt-desc {
    font-size: 20px;
    color: #1C1B1F;
    font-weight: 400;
    opacity: 0.7;
    font-family: 'Google Sans Flex', 'Google Sans', sans-serif;
    letter-spacing: 0.3px;
    margin-top: 4px;
}

.copy-pill-container {
    width: 100%;
    max-width: 700px;
    margin-top: 20px;
}

.copy-pill {
    display: flex;
    align-items: center;
    background-color: var(--copy-bg);
    border-radius: var(--radius-pill);
    padding: 12px 20px 12px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: none;
    position: relative;
}

.copy-button {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    border-radius: 0;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    position: relative;
    z-index: 2;
}

.copy-button:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.copy-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

.copy-content {
    flex: 1;
    overflow-x: auto;
    padding: 0;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.copy-content::-webkit-scrollbar {
    height: 6px;
}

.copy-content::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}

.copy-content::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.copy-text {
    color: white;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Google Sans Flex', 'Google Sans', sans-serif;
    padding-left: 0;
}

.copy-message {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #625B71;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: 'Google Sans Flex', 'Google Sans', sans-serif;
}

.copy-message.show {
    opacity: 1;
}

@media (max-width: 1024px) {
    .m-section {
        padding: 60px 0 30px;
        min-height: 70vh;
    }
    
    .pt-name {
        font-size: 64px;
    }
    
    .shape {
        width: 180px !important;
    }
}

@media (max-width: 768px) {
    .m-section {
        padding: 40px 0 20px;
        min-height: 60vh;
    }
    
    .pt-name {
        font-size: 56px;
    }
    
    .logo-image {
        width: 100px;
        height: 100px;
    }
    
    .pt-desc {
        font-size: 18px;
    }
    
    .copy-pill-container {
        max-width: 90%;
    }
    
    .shape {
        width: 150px !important;
    }
    
    .shape-4, .shape-6 {
        display: none;
    }
}

@media (max-width: 480px) {
    .m-section {
        padding: 30px 0 15px;
        min-height: 50vh;
    }
    
    .pt-name {
        font-size: 48px;
    }
    
    .logo-image {
        width: 80px;
        height: 80px;
    }
    
    .pt-desc {
        font-size: 16px;
    }
    
    .copy-pill {
        padding: 4px 4px 4px 12px;
    }
    
    .copy-button {
        padding: 10px;
        font-size: 18px;
        width: 44px;
        height: 44px;
    }
    
    .copy-text {
        font-size: 14px;
    }
    
    .shape {
        width: 120px !important;
    }
    
    .shape-3, .shape-5 {
        display: none;
    }
}