* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fffaf0;
    color: #4a4a4a;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 8%;
    background: white;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff7aa2;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #555;
    font-weight: bold;
}

.nav-btn {
    background: #ff9f43;
    color: white !important;
    padding: 12px 20px;
    border-radius: 25px;
}

.hero {
    min-height: 90vh;
    background:
        linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65)),
        linear-gradient(135deg, #ffd6e8, #fff3b0, #c8f4ff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 8%;
    text-align: center;
}

.carousel {
    max-width: 850px;
    min-height: 250px;
    position: relative;
}

.slide {
    display: none;
    animation: fade 0.8s ease-in-out;
}

.slide.active {
    display: block;
}

.slide h1 {
    font-size: 58px;
    margin-bottom: 20px;
    color: #3f3f3f;
}

.slide p {
    font-size: 22px;
    color: #666;
    line-height: 1.6;
}

.main-btn,
.secondary-btn {
    display: inline-block;
    margin-top: 25px;
    background: #ff9f43;
    color: white;
    padding: 16px 30px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(255,159,67,0.35);
}

.secondary-btn {
    background: #ff7aa2;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 80px 8%;
    background: white;
}

.feature-card {
    background: #fff7ec;
    padding: 35px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.icon {
    font-size: 45px;
}

.feature-card h3 {
    color: #ff7aa2;
    font-size: 24px;
}

.feature-card p {
    line-height: 1.6;
    color: #666;
}

.about-preview {
    padding: 90px 8%;
    background: linear-gradient(135deg, #e0f7ff, #fff7d6);
    text-align: center;
}

.about-preview div {
    max-width: 800px;
    margin: auto;
}

.section-label {
    color: #ff7aa2;
    font-weight: bold;
}

.about-preview h2,
.waitlist-box h2 {
    font-size: 42px;
    margin: 10px 0;
}

.about-preview p,
.waitlist-box p {
    font-size: 19px;
    line-height: 1.7;
    color: #666;
}

.waitlist-box {
    margin: 80px 8%;
    padding: 60px;
    text-align: center;
    background: #fff;
    border-radius: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

footer {
    text-align: center;
    padding: 25px;
    background: #ffb6c9;
    color: white;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links a {
        display: inline-block;
        margin: 8px;
    }

    .slide h1 {
        font-size: 36px;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 550px;
    margin: 30px auto 0;
}

.waitlist-form input,
.waitlist-form textarea {
    padding: 16px;
    border: 2px solid #ffd1dc;
    border-radius: 18px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.waitlist-form textarea {
    min-height: 120px;
}

.waitlist-form button {
    background: #ff9f43;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 17px;
    cursor: pointer;
}

.table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.admin-table th,
.admin-table td {
    padding: 14px;
    border: 1px solid #ffd1dc;
    text-align: left;
}

.admin-table th {
    background: #ffb6c9;
    color: white;
}

.logo{
    text-decoration : none;    
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.gallery-card {
    background: #fff7ec;
    border-radius: 24px;
    padding: 15px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
}

.gallery-card p {
    font-weight: bold;
    color: #666;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.delete-btn {
    display: inline-block;
    margin-top: 10px;
    background: #ff4d6d;
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}