@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #ce1a01;
    --secondary-color: #333a37;
    --background-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Calibri', sans-serif;
    background: #ffffff;
    color: #333333;
    line-height: 1.6;
}

/* You might want to adjust these colors to match the white background */
@font-face {
    font-family: 'Skytree';
    src: url('fonts/Skytree one.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.glowing-text {
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about {
    background: rgba(0, 0, 0, 0.02);
}

.about p {
    color: #333333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center; /* Add this */
}

main {
    flex: 1;
    text-align: center;
    width: 100%; /* Add this */
    max-width: 900px; /* Add this */
}

/* About section styles */
.about {
    text-align: center;
    margin: 1rem auto;
    padding: 2rem;
    background: #ffffff;
    border: none; /* Remove left border */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 8px; /* Update border radius */
    width: 100%; /* Add this */
    text-align: left !important;
}

.about p {
    margin-bottom: 1rem;
    color: #333333;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.8;
    text-align: left !important;
    padding: 0;
}

.about p:first-child {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--primary-color);
    font-weight: 500;
    text-align: left !important;
}

/* Update media query for mobile */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .about {
        margin: 1rem;
        padding: 1.5rem;
    }
}

header {
    text-align: center;
    padding: 2rem 0;
}

.logo-image {
    width: 250px !important;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
}

main {
    flex: 1;
    text-align: center;
}

/* Main heading styles */
.glowing-text {
    font-family: 'Skytree', cursive;
    font-weight: 400;  /* Using bold weight */
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin: 0.5rem 0;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #ff6b6b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite, bounce 2s ease-in-out infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
    background: linear-gradient(90deg, var(--primary-color), #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

/* Subheading styles */
h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

/* About section styles */
.about {
    text-align: center;
    margin: 1rem auto;
    padding: 1rem;
    background: #ffffff;
    border-left: 3px solid var(--primary-color);
    max-width: 900px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 0 8px 8px 0;
}

.about p {
    margin-bottom: 1rem;
    color: #333333;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.8;
    text-align: center;
}

.about p:first-child {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
}

/* Social links styles */
/* Remove all duplicate social icon and footer styles from the bottom of the file */

/* Update the social links styles */
.social-links {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 1.5rem);
    margin: 2rem 0;
}

.social-icon {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    display: inline-block;
    background-color: #1e0909;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-icon:hover {
    color: #ffffff;
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(206, 26, 1, 0.2);
}

footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--secondary-color);
    margin-top: auto; /* Add this to push footer to bottom */
}

/* Container responsive padding */
.container {
    padding: clamp(1rem, 5vw, 2rem);
}

/* Logo responsive size */
.logo-image {
    width: clamp(100px, 20vw, 150px);
}

/* Media Queries */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .about {
        padding: 1.5rem;
        margin: 1rem 0.5rem;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    footer {
        padding: 1rem 0;
    }
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0.5rem auto;  /* Reduced margin */
    width: 40%;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;  /* Reduced margin */
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.about {
    text-align: left;
    margin: 1rem 0;  /* Reduced margin */
    padding: 1.5rem;  /* Reduced padding */
    background: #ffffff;
    border-left: 3px solid var(--primary-color);
}

.about p:first-child {
    margin-top: 0;  /* Remove top margin of first paragraph */
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 500;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
    }
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    min-width: 120px;
}

.countdown-item span {
    font-size: 2.5rem;
    font-weight: 600;
    color: #4ecdc4;
}

.countdown-item p {
    font-size: 1rem;
    color: #ffffff80;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff40, transparent);
    margin: 2rem auto;
    width: 60%;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ff6b6b;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem auto;
    max-width: 600px;
}

.newsletter-form h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.newsletter-form form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    background: #ff6b6b;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff5252;
}

.about {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background: #ffffff;
}

.about p {
    margin-bottom: 1.5rem;
    color: #333333;  /* Changed from white to dark gray */
}

h2 {
    color: #333333;  /* Also updating heading color for better visibility */
}

.social-icon {
    color: #333333;  /* Updated social icons color */
}

footer p {
    color: #333333;  /* Updated footer text color */
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-icon {
    color: #ffffff80;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #4ecdc4;
}

footer {
    text-align: center;
    padding: 2rem 0;
    color: #ffffff80;
}

@media (max-width: 768px) {
    .countdown-container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 100px;
    }
    
    .newsletter-form form {
        flex-direction: column;
    }
    
    .glowing-text {
        font-size: 2.5rem;
    }
}

.social-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.social-icon {
    background-color: #1e0909;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}
.glowing-text {
    font-family: 'Skytree', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: normal;
    margin: 0.5rem 0;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #ff6b6b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite, bounce 2s ease-in-out infinite;
}