﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:ital,wght@0,400;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Cormorant+Garamond:wght@600&family=Cinzel:wght@700&display=swap');


:root {
    --pink: #F5F5DC;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}

html {
    font-size: 63.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}

section {
    padding: 2rem 9%;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 2rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}

header .logo {
    font-size: 3rem;
    color: #333;
    font-weight: bolder;
}

header .logo span {
    color: #EDC9AF;
}

header .navbar a {
    font-size: 2rem;
    padding: 0 1.5rem;
    color: #666;
}

header .navbar a:hover {
    color: #EED9C4;
    background-color: #666;
    border-radius: 20px;
}

header .navbar a.active,
header .dropdown .dropbtn.active {
    color: #EED9C4;
    background-color: #666;
    border-radius: 20px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    font-size: 2rem;
    padding: 0 1.5rem;
    color: #666;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .1);
    z-index: 1;
    border-radius: 20px;
}

.dropdown-content a {
    color: #666;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 20px;
}

.dropdown-content a:hover {
    background-color: #666;
    color: #fff;
    border-radius: 20px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #EED9C4;
}

.home {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: url('https://i.postimg.cc/k4Fm5kND/landing-Image.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.landing-page {
   display: flex;
    align-items: center;
    min-height: 100vh;/* Reduce height slightly */
    background: url(https://i.postimg.cc/Twd233Kg/sub-buzz-1057-1644602466-29.jpg) no-repeat;
    background-size: cover;
    background-position: center;/* Move image lower */

}

.admin {
   display: flex;
    align-items: center;
    min-height: 80vh;/* Reduce height slightly */
    background: url(https://i.postimg.cc/Y9YVZZLH/global-admin-icon-color-outline-vector.jpg) no-repeat;
    margin-left: 5rem;
    background-position: center;
    margin-top: 10rem;
}

.home .content {
    max-width: 50rem;
}

.home2 .content2-parent {
    max-width: 100rem;
    margin: 0 auto;
}

.dashboard-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem; /* optional: add space between cards */
}
.home .content h3 {
    font-size: 6rem;
    color: #333;
}

.home .content span {
    font-size: 2.7rem;
    color: #DBB893;
    padding: 1rem 0;
    line-height: 1.5;
    font-weight: 600;
}

.home .content p {
    font-size: 2.5rem;
    color: #EDC9AF;
    padding: 2rem;
    line-height: 1.5;
    font-weight: 600;
    margin-top: 10px;

}

.home .content p a{
   font-size: 2.3rem;
    line-height: 1.5;
    font-weight: 500;
     color: #fff;
    background: #666;
    border-radius: 20px; 
    padding: 0.5rem 3rem;
}

.home .content p a:hover{
  color: #666;
  background: #EDC9AF;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(400px, 1fr)); /* wider cards */
    gap: 2.5rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 1400px;
    padding: 2rem 0 2rem 2rem;
    box-sizing: border-box;
    justify-items: start;
}

.dashboard-card {
    width: 100%;
    max-width: 420px; /* increased width */
    background-color: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.card-image {
    border-radius: 1.5rem;
    width: 100%;
    height: 230px; /* fixed height for consistency */
    object-fit: cover;
    margin-bottom: 1rem;
}

.dashboard-card i {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1.2rem;
}

.dashboard-card h4 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    color: #333;
}

.dashboard-card p {
    font-size: 2.2rem; /* increased size */
    color: #DBB893; 
    font-weight: bold;
}

.dashboard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    background-color: #f9f9f9;
}