/* Base styling */
body{
    font-family: 'Noto Serif Display', serif;
    margin:0;
    padding:0;
    background:#10021e;           /* deep night background */
    color:#ffe6cc;                /* soft cream text */
}

/* About Me Section */
.about-me {
    max-width: 900px;
    margin: 20px auto;
    padding: 5px 15px;
    background: linear-gradient(135deg, #2b002b, #4e003e); /* dark sunset gradient */
    border-left: 5px solid #ff6b35;                        /* sunset accent */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(255,107,53,0.3);
    color: #ffe6cc;
    line-height: 1.8;
    font-size: 1.1rem;
    transition: transform .3s ease, box-shadow .3s ease;
}

.about-me:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255,107,53,0.5);
}

.about-me h2 {
    color: #ff9a56;   /* bright sunset highlight */
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-me p {
    margin-bottom: 15px;
}

/* Header banner */
header{
    background: linear-gradient(135deg, #6b0039, #ff3f5e); /* deep sunset gradient */
    color:white;
    padding:25px 10px;             /* taller header to fit large text */
    text-align:center;
    position: relative;
}

header h1{
    margin:0 auto;
    width: 95%;                    /* nearly full width */
    font-size: 6vw;                /* responsive large size */
    line-height: 1.1;
    text-align: center;
    color: #fbbb90;
    transition: text-shadow 0.3s ease, transform 0.3s ease;
}

/* Scroll glow effect */
header h1.glow {
    text-shadow: 
        0 0 10px #ff6b35,
        0 0 20px #ff9a56,
        0 0 30px #ff3f5e,
        0 0 40px #ff6b35,
        0 0 50px #ff9a56;
}

header p{
    margin-top:5px;
    font-size:1.3rem;
    color: #ffe6cc;
}

/* Navigation */
nav{
    display:flex;
    justify-content:center;
    gap:30px;
    padding:15px 0;
    background:#330022;
    box-shadow:0 2px 12px rgba(0,0,0,0.5);
    position:sticky;
    top:0;
    z-index:100;
}

nav a{
    text-decoration:none;
    font-weight:bold;
    color:#ffbf80;
    transition: color .3s, transform .3s;
}

nav a:hover{
    color:#ff6b35;
    transform: scale(1.1);
}

/* Pricing section */
.pricing-container{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
    gap:20px;
    margin-top:30px;
}

/* Card */
.pricing-card{
    padding:25px;
    border-radius:12px;
    background: linear-gradient(135deg, #2b002b, #4e003e);
    box-shadow:0 6px 20px rgba(255,107,53,0.3);
    text-align:center;
    transition:transform .3s ease, box-shadow .3s ease;
}

.pricing-card:hover{
    transform:translateY(-7px);
    box-shadow:0 12px 35px rgba(255,107,53,0.5);
}

.pricing-card h3{
    margin-bottom:10px;
    color:#ff9a56;
}

.time{
    color:#d9a566;
    margin-bottom:15px;
}

.price{
    font-size:22px;
    font-weight:bold;
    color:#ff6b35;
}

.contact-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-weight: bold;
    color: #ff6b35;
    background: #330022;
    border: 2px solid #ff6b35;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #ff6b35;
    color: #10021e;
    box-shadow: 0 6px 20px rgba(255,107,53,0.5);
}

/* Gallery */
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(220px,1fr));
    gap:12px;
}

.gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:12px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.gallery img:hover{
    transform:scale(1.05);
    box-shadow: 0 8px 20px rgba(255,107,53,0.4);
}

/* Card container */
.card-container{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
    gap:20px;
    max-width:1000px;
    margin:40px auto;
    padding:0 20px;
}

.card{
    padding:25px;
    border-radius:12px;
    background: linear-gradient(135deg, #2b002b, #4e003e);
    box-shadow:0 6px 20px rgba(255,107,53,0.3);
    text-align:center;
    transition:transform .3s ease, box-shadow .3s ease;
}

.card:hover{
    transform:translateY(-7px);
    box-shadow:0 12px 35px rgba(255,107,53,0.5);
}

.card h3{
    margin-bottom:15px;
    color:#ff9a56;
}

.card a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:10px;
    padding:10px 18px;
    background:#330022;
    border:2px solid #ff6b35;
    color:#ffbf80;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
    transition:all .3s ease;
}

.card a:hover{
    background:#ff6b35;
    color:#10021e;
}

/* Footer */
footer{
    margin-top:60px;
    text-align:center;
    padding:20px 0;
    color:#d9a566;
    font-size:.9rem;
}