:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --background-color: #f8f9fa;
    --section-background: #ffffff;
    --max-width: 1200px;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    width: 100%;
    max-width: 95vw;
    margin: 0 auto;
    padding: 0 2.5vw;
}

header {
    background-image: linear-gradient(rgba(44, 62, 80, 0.4), rgba(44, 62, 80, 0.4)), url('header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 4rem 0;
    margin-bottom: 2rem;
    position: relative;
}

.header-content {
    text-align: left;
    max-width: 800px;
    margin: 0;
    padding-left: 2rem;
}

h1 {
    font-size: 5rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
    color: #bdc3c7;
    margin-bottom: 2rem;
    font-weight: 300;
    font-style: italic;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 2rem;
}

section {
    background-color: var(--section-background);
    padding: 3rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    padding-right: 1rem;
}

.profile-image {
    text-align: center;
}

.profile-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.skill-category {
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.skill-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.skill-category li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.portfolio-item {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-info {
    padding: 1.5rem;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease;
    text-align: center;
    justify-content: center;
    height: 48px;
    min-width: 140px;
}

.contact-button:hover {
    background-color: #2980b9;
}

.contact-button.secondary {
    background-color: var(--accent-color);
}

.contact-button.secondary:hover {
    background-color: #c0392b;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease;
    text-align: center;
    justify-content: center;
    height: 48px;
    min-width: 140px;
}

.social-button:hover {
    background-color: #1a252f;
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

/* Services Page Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.service-category {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
}

.service-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-category h3 i {
    color: var(--secondary-color);
    font-size: 1.2em;
}

.service-category p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.service-category ul {
    list-style: none;
}

.service-category li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-category li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.step {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Wedding Livestream Page Styles */
.wedding-header {
    background-image: url('wedding-header.jpeg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--section-background);
    padding: 2rem 0;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    min-height: 40vh;
}

.wedding-info {
    margin: 2rem 0;
    text-align: center;
}

.couple-names {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.couple-names .name {
    font-weight: 600;
    color: #f39c12;
}

.couple-names .and {
    font-size: 1.5rem;
    margin: 0 1rem;
    color: #ecf0f1;
}

.wedding-date {
    font-size: 1.2rem;
    color: #bdc3c7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.header-decoration {
    margin: 2rem 0;
    text-align: center;
}

.decorative-hat {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.decorative-hat:hover {
    transform: scale(1.05) rotate(5deg);
}

/* Livestream Section */
.livestream-section {
    background-color: var(--section-background);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.livestream-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* YouTube Link Card */
.youtube-link-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.youtube-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.youtube-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.youtube-logo {
    font-size: 2.5rem;
    color: #ff0000;
    margin-right: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stream-info h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.stream-time {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    font-weight: 300;
}

.youtube-preview {
    position: relative;
    background: #000;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preview-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #1a1a1a 0%, #2d2d2d 100%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-thumbnail:hover {
    background: linear-gradient(45deg, #2d2d2d 0%, #3d3d3d 100%);
}

.preview-thumbnail i {
    font-size: 4rem;
    color: #ff0000;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.preview-thumbnail:hover i {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.youtube-actions {
    padding: 2rem;
    text-align: center;
}

.youtube-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.youtube-button:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    color: white;
}

.youtube-button i {
    font-size: 1.3rem;
}

.stream-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.detail-item i {
    color: #ff0000;
    font-size: 1rem;
}

.youtube-instructions {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.youtube-instructions p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.livestream-placeholder {
    background-color: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.livestream-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}

.status-indicator.live {
    color: #e74c3c;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator.live i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.viewer-count {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.video-placeholder {
    height: 400px;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    text-align: center;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #444;
}

.embed-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
}

.embed-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #444;
}

.livestream-controls {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.control-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--secondary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item .time {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
    z-index: 1;
}

.timeline-item .event {
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 0 2rem;
    flex: 1;
    max-width: 300px;
}

.timeline-item .event h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-item .event h3 i {
    color: var(--secondary-color);
}

/* Wedding Details */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.detail-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.detail-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.detail-card h3 i {
    color: var(--secondary-color);
}

.detail-card p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Guest Message */
.guest-message {
    background-color: white;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.message-content {
    width: 100%;
    text-align: center;
}

.message-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-color);
}

.signature {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.signature .bride-name {
    color: black;
}

.signature .groom-name {
    color: black;
}

.signature .and {
    margin: 0 1rem;
    color: var(--text-color);
}

.placeholder {
    background-color: #e0e0e0;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-color);
    opacity: 0.8;
}

.signature-image {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.signature-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
}

.hat-divider {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.hat-image {
    max-width: 360px;
    width: 100%;
    height: auto;
}

.accordion {
    margin-top: 1rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 0.5rem 1rem;
}

.accordion summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    list-style: none;
}

.accordion[open] summary {
    margin-bottom: 0.5rem;
}

.accordion ul {
    padding-left: 1.2rem;
}

.accordion li {
    margin-bottom: 0.5rem;
}

.help-heading {
    text-align: center;
    color: var(--primary-color);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.help-steps {
    width: 100%;
    margin: 0 0 1.5rem 0;
    line-height: 1.8;
    padding-left: 0.75rem;
    list-style-position: inside;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.help-steps li {
    margin-bottom: 0.6rem;
    padding-right: 0.5rem;
}

.help-footer {
    text-align: center;
    margin-top: 1rem;
}

/* Accordion polish */
.accordion {
    margin: 1rem 0 0 0;
    background-color: var(--section-background);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 0.75rem 1rem;
    width: 100%;
}

.accordion summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accordion summary::after {
    content: '\25BC';
    margin-left: auto;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
    color: var(--primary-color);
}

.accordion[open] summary::after {
    transform: rotate(-180deg);
}

.accordion-content {
    margin-top: 0.75rem;
}

.accordion-content ul {
    padding-left: 0.75rem;
    line-height: 1.7;
    list-style-position: inside;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.accordion-content li {
    margin-bottom: 0.6rem;
    padding-right: 0.5rem;
}

@media (max-width: 768px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .header-buttons {
        flex-direction: column;
    }

    .container {
        padding: 0 1rem;
    }

    .header-content {
        padding-left: 0rem;
    }

    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .wedding-header {
        padding: 1rem 0;
        min-height: 28vh;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
    }

    .help-steps {
        padding-left: 0.5rem;
        font-size: 0.9rem;
    }

    .help-steps li {
        margin-bottom: 0.8rem;
        padding-right: 0.25rem;
    }

    .accordion {
        padding: 0.5rem 0.75rem;
    }

    .accordion-content ul {
        font-size: 0.85rem;
        padding-left: 0.5rem;
    }

    .accordion-content li {
        margin-bottom: 0.7rem;
        padding-right: 0.25rem;
    }

    .youtube-header {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .youtube-logo {
        margin-right: 0;
        margin-bottom: 0.5rem;
        font-size: 2rem;
    }

    .stream-info h3 {
        font-size: 1.3rem;
    }

    .youtube-preview {
        height: 200px;
    }

    .preview-thumbnail i {
        font-size: 3rem;
    }

    .youtube-actions {
        padding: 1.5rem;
    }

    .youtube-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .stream-details {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .detail-item {
        font-size: 0.85rem;
        padding: 0.4rem;
    }

    .youtube-instructions {
        padding: 1rem;
    }

    .youtube-instructions p {
        font-size: 0.9rem;
    }
} 