/* Font setup */
@font-face {
    font-family: 'Noto Sans';
    src: url('nt.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

body {
    font-family: 'Noto Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* General spacing */
section {
    padding: 2rem 1rem;
    max-width: 900px;
    margin: auto;
}

/* Headings */
h1, h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #222;
}

h1 {
    font-size: 2.5rem;
    color: #ffffff;
}

h2 {
    font-size: 1.8rem;
    color: #023e8a;
}

/* Paragraphs */
p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

/* Container for images */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.container a {
    flex: 1 1 45%;
    max-width: 400px;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container a:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact link */
a {
    color: #0077b6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
}


/* EXTRA DELETE IF NOT WORKING */

/* Text animation */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image animation */
.animate-image {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-image.visible {
    opacity: 1;
    transform: scale(1);
}

/* EXTRA DELETE IF NOT WORKING 2 */

/* Desktop layout for Prices + Features */
.prices-features {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
}

.prices-features section {
    flex: 1;
}

/* Mobile view: stack them */
@media (max-width: 768px) {
    .prices-features {
        flex-direction: column;
    }
}





/* Animated gradient background for hero */
.hero {
    background: linear-gradient(-45deg, #4a90e2, #8e44ad, #6a11cb, #2575fc);
    background-size: 400% 400%;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    animation: gradientShift 15s ease infinite;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Keyframes for gradient animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(-45deg, #4facfe, #00f2fe, #d0eaff, #b3d9ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Firefox support */
    color: transparent;
    animation: gradientShift 15s ease infinite;
}

















/* Glowing hero text */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255,255,255,0.7), 
                 0 0 20px rgba(255,255,255,0.5);
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}






@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255,255,255,0.7), 0 0 20px rgba(255,255,255,0.5); }
    50% { text-shadow: 0 0 20px rgba(255,255,255,0.9), 0 0 30px rgba(255,255,255,0.7); }
}

.hero h1 {
    animation: textGlow 3s ease-in-out infinite;
}





/* Fixed bottom dock */
.bottom-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;       /* dark background */
  color: #fff;            /* white text */
  text-align: center;
  padding: 0.75rem;
  font-size: 0.9rem;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
  z-index: 1000;          /* always on top */
}
.bottom-dock a {
  color: #4da6ff;         /* link color */
  text-decoration: underline;
}






