/* Importing Fun Font */
@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lilita One';
}

body {
    background-color: #f9f9f9; /* Light Background for Clean Look */
    color: #333;
    text-align: center;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #e0e0e0;
    padding: 15px 0;
    border-bottom: 2px solid #bbb;
    position: sticky;
    top: 0;
    z-index: 1000;
}
header img{
    width: 50px;
    height: auto;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #555;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #777;
}

/* Sections */
.section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}

h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #555;
}

/* Services */
.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service {
    flex: 1;
    background: #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.service img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service h3 {
    font-size: 1.6rem;
    margin: 10px 0;
    color: #555;
    font-weight: 600;
}

.service p {
    font-size: 1rem;
    color: #666;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-content: center;
    max-width: 800px;
    margin: auto;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.418);
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Special Items & Tiers */
.special-container, .tiers-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
    max-width: 900px;
    margin: auto;
}

.special-item, .tier {
    background: #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.418);
}

.special-item img, .tier img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.special-item h3, .tier h3 {
    font-size: 1.6rem;
    margin: 10px 0;
    color: #555;
    font-weight: 600;
}

.special-item p, .tier p {
    font-size: 1rem;
    color: #666;
}
.special-item h3 {
    display: flex;
    flex-direction: column;
}


/* Gallery Button (No Border) */
.portfolio-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.view-work {
    flex: 0 0 48%;
}

.view-gallery-button {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.gallery-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.gallery-item {
    flex: 1;
    width: 100%;
    height: auto;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.gallery-button:hover {
    background-color: #555;
}
/* Form */
form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
}

form input, form textarea {
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 5px;
    font-size: 1rem;
    background: #f0f0f0;
    color: #333;
    outline: none;
}

form button {
    padding: 10px;
    border: none;
    background-color: #777;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

form button:hover {
    background-color: #555;
}


footer {
    background: url("/website/Background.jpg") no-repeat center center/cover;
    color: #333;
    text-align: center;
    padding: 40px 20px;
    border-top: 2px solid #bbb;
    position: relative;
}

footer p, .social-icons {
    color:white;
    position: relative;
    z-index: 1;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
}

.social-icons a img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s, opacity 0.3s;
}

.social-icons a img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}
